Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 56ebb2a

Browse files
authored
Merge pull request #8740 from pamil/1.0-coding-standard-2-header
Add missing license headers
2 parents 01ef743 + ba11a98 commit 56ebb2a

112 files changed

Lines changed: 827 additions & 20 deletions

File tree

Some content is hidden

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

easy-coding-standard.neon

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,17 @@ checkers:
3939
PhpCsFixer\Fixer\ClassNotation\SingleClassElementPerStatementFixer: {}
4040
PhpCsFixer\Fixer\ClassNotation\VisibilityRequiredFixer: {}
4141
PhpCsFixer\Fixer\Comment\HashToSlashCommentFixer: {}
42+
PhpCsFixer\Fixer\Comment\HeaderCommentFixer:
43+
header:
44+
"""
45+
This file is part of the Sylius package.
46+
47+
(c) Paweł Jędrzejewski
48+
49+
For the full copyright and license information, please view the LICENSE
50+
file that was distributed with this source code.
51+
"""
52+
location: after_open
4253
PhpCsFixer\Fixer\Comment\NoEmptyCommentFixer: {}
4354
PhpCsFixer\Fixer\Comment\NoTrailingWhitespaceInCommentFixer: {}
4455
PhpCsFixer\Fixer\Comment\SingleLineCommentStyleFixer:

src/Sylius/Behat/Context/Ui/Shop/Checkout/CheckoutAddressingContext.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Context\Ui\Shop\Checkout;

src/Sylius/Behat/Context/Ui/Shop/Checkout/CheckoutCompleteContext.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Context\Ui\Shop\Checkout;

src/Sylius/Behat/Context/Ui/Shop/Checkout/CheckoutOrderDetailsContext.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Context\Ui\Shop\Checkout;

src/Sylius/Behat/Context/Ui/Shop/Checkout/CheckoutPaymentContext.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Context\Ui\Shop\Checkout;

src/Sylius/Behat/Context/Ui/Shop/Checkout/CheckoutShippingContext.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Context\Ui\Shop\Checkout;

src/Sylius/Behat/Context/Ui/Shop/Checkout/CheckoutThankYouContext.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Context\Ui\Shop\Checkout;

src/Sylius/Behat/Service/Accessor/TableAccessor.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Service\Accessor;

src/Sylius/Behat/Service/Accessor/TableAccessorInterface.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Behat\Service\Accessor;

src/Sylius/Bundle/AddressingBundle/test/Tests/Form/Type/CountryChoiceTypeTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Paweł Jędrzejewski
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
declare(strict_types=1);
413

514
namespace Sylius\Bundle\AddressingBundle\Tests\Form\Type;

0 commit comments

Comments
 (0)