Skip to content

Commit

Permalink
Reformatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
stelgenhof committed Jan 13, 2021
1 parent df2a223 commit 3fc78c2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Yasumi/BaseHoliday.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function __construct($time = 'now', $timezone = null)
*
* @return string this instance as a string using the set format
*/
public function __toString(): string
public function __toString(): string
{
return $this->format(self::DATE_FORMAT);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Yasumi/Provider/Ireland.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* Note: All calculations are based on the schedule published in the Holidays (Employees) Act, 1973 and its amendments
* thereafter.
*
* @link: http://www.irishstatutebook.ie/eli/1973/act/25/schedule/1/enacted/en/html#sched1
* @see: http://www.irishstatutebook.ie/eli/1973/act/25/schedule/1/enacted/en/html#sched1
*/
class Ireland extends AbstractProvider
{
Expand Down
4 changes: 2 additions & 2 deletions tests/Base/YasumiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ public function testRemoveHoliday(): void
*
* @throws ReflectionException
*/
public function testCreateByISO3166_2(): void
public function testCreateByISO31662(): void
{
$year = Factory::create()->numberBetween(
self::YEAR_LOWER_BOUND,
Expand All @@ -585,7 +585,7 @@ public function testCreateByISO3166_2(): void
*
* @throws ReflectionException
*/
public function testCreateByISO3166_2WithInvalidCode(): void
public function testCreateByISO31662WithInvalidCode(): void
{
$this->expectException(ProviderNotFound::class);

Expand Down
4 changes: 2 additions & 2 deletions tests/Romania/NationalDayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function testNationalDayOnAfter1990(): void
* @throws Exception
* @throws ReflectionException
*/
public function testNationalDayBetween1948_1989(): void
public function testNationalDayBetween19481989(): void
{
$year = $this->generateRandomYear(1948, 1989);
$this->assertHoliday(
Expand All @@ -76,7 +76,7 @@ public function testNationalDayBetween1948_1989(): void
* @throws Exception
* @throws ReflectionException
*/
public function testNationalDayBetween1866_1947(): void
public function testNationalDayBetween18661947(): void
{
$year = $this->generateRandomYear(self::ESTABLISHMENT_YEAR, 1947);
$this->assertHoliday(
Expand Down

0 comments on commit 3fc78c2

Please sign in to comment.