Skip to content

Commit 145dc8a

Browse files
committed
Coding Standard (PSR-2) fixes and reformatting. Minor textual corrections.
1 parent b4d5eb1 commit 145dc8a

File tree

384 files changed

+543
-391
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

384 files changed

+543
-391
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
.idea/
33
vendor
44
composer.lock
5-
.php_cs.cache
5+
.php_cs.cache
6+
bin/_*

src/Yasumi/Exception/Exception.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Exception;

src/Yasumi/Exception/UnknownLocaleException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Exception;

src/Yasumi/Filters/BankHolidaysFilter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Filters;

src/Yasumi/Filters/ObservedHolidaysFilter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Filters;

src/Yasumi/Filters/OfficialHolidaysFilter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Filters;

src/Yasumi/Filters/OtherHolidaysFilter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Filters;

src/Yasumi/Filters/SeasonalHolidaysFilter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Filters;

src/Yasumi/Holiday.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi;

src/Yasumi/Provider/AbstractProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/Belgium.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/ChristianHolidays.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/CommonHolidays.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/CzechRepublic.php

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
<?php
2+
/**
3+
* This file is part of the Yasumi package.
4+
*
5+
* Copyright (c) 2015 - 2016 AzuyaLabs
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
9+
*
10+
* @author Sacha Telgenhof <[email protected]>
11+
*/
212

313
namespace Yasumi\Provider;
414

@@ -18,7 +28,7 @@ class CzechRepublic extends AbstractProvider
1828
use CommonHolidays, ChristianHolidays;
1929

2030
/**
21-
* Initialize holidays for Germany.
31+
* Initialize holidays for the Czech Republic.
2232
*/
2333
public function initialize()
2434
{

src/Yasumi/Provider/Denmark.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*
11-
* @author Sacha Telgenhof <[email protected]>
11+
* @author Sacha Telgenhof <[email protected]>
1212
*/
1313

1414
namespace Yasumi\Provider;

src/Yasumi/Provider/Finland.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/France.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/France/BasRhin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\France;

src/Yasumi/Provider/France/HautRhin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\France;

src/Yasumi/Provider/France/Moselle.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\France;

src/Yasumi/Provider/Germany.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*
11-
* @author Sacha Telgenhof <[email protected]>
11+
* @author Sacha Telgenhof <[email protected]>
1212
*/
1313

1414
namespace Yasumi\Provider;

src/Yasumi/Provider/Greece.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/Italy.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/Japan.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*
11-
* @author Sacha Telgenhof <[email protected]>
11+
* @author Sacha Telgenhof <[email protected]>
1212
*/
1313

1414
namespace Yasumi\Provider;

src/Yasumi/Provider/Netherlands.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/NewZealand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/Norway.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/Poland.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/Spain.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider;

src/Yasumi/Provider/Spain/Andalusia.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/Aragon.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/Asturias.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/BalearicIslands.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/BasqueCountry.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/CanaryIslands.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/Cantabria.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/CastileAndLeon.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*
11-
* @author Sacha Telgenhof <[email protected]>
11+
* @author Sacha Telgenhof <[email protected]>
1212
*/
1313

1414
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/CastillaLaMancha.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*
11-
* @author Sacha Telgenhof <[email protected]>
11+
* @author Sacha Telgenhof <[email protected]>
1212
*/
1313

1414
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/Catalonia.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/Ceuta.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/CommunityOfMadrid.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

src/Yasumi/Provider/Spain/Extremadura.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*
10-
* @author Sacha Telgenhof <[email protected]>
10+
* @author Sacha Telgenhof <[email protected]>
1111
*/
1212

1313
namespace Yasumi\Provider\Spain;

0 commit comments

Comments
 (0)