Skip to content

Commit

Permalink
Merge pull request #1 from ojdon/master
Browse files Browse the repository at this point in the history
Removed shorthand php tags
  • Loading branch information
DivineOmega authored Apr 3, 2017
2 parents 3a191ba + e2947e0 commit 5bfdb02
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/Factories/UkBankHolidayFactory.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?
<?php
namespace RapidWeb\UkBankHolidays\Factories;

use exception;
Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/CacheDriverInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ interface CacheDriverInterface
{
public function set($key, $value);
public function get($key);
}
}
4 changes: 2 additions & 2 deletions src/Objects/CacheDrivers/LaravelCacheDriver.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?
<?php

namespace RapidWeb\UkBankHolidays\Objects\CacheDrivers;

Expand All @@ -17,4 +17,4 @@ public function get($key)
return Cache::get($key);
}

}
}
4 changes: 2 additions & 2 deletions src/Objects/CacheDrivers/RWFileCacheDriver.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?
<?php

namespace RapidWeb\UkBankHolidays\Objects\CacheDrivers;

Expand Down Expand Up @@ -30,4 +30,4 @@ public function get($key)
return $this->cache->get($key);
}

}
}
4 changes: 2 additions & 2 deletions src/Objects/DataRetrievers/GovUkDataRetriever.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?
<?php
namespace RapidWeb\UkBankHolidays\Objects\DataRetrievers;

use RapidWeb\UkBankHolidays\Objects\UkBankHoliday;
Expand Down Expand Up @@ -73,4 +73,4 @@ public function retrieveNorthernIreland()
return $this->retrieve("northern-ireland");
}

}
}
4 changes: 2 additions & 2 deletions src/Objects/UkBankHoliday.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?
<?php
namespace RapidWeb\UkBankHolidays\Objects;

class UkBankHoliday
Expand All @@ -14,4 +14,4 @@ public function __construct($title,$date,$notes)
$this->notes = $notes;
}
}
?>
?>
4 changes: 2 additions & 2 deletions src/example.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?
<?php
require_once '../vendor/autoload.php';

use RapidWeb\UkBankHolidays\Factories\UkBankHolidayFactory;
Expand All @@ -10,4 +10,4 @@



?>
?>

0 comments on commit 5bfdb02

Please sign in to comment.