Skip to content

Commit 2ed6d9f

Browse files
smnandreweaverryan
authored andcommitted
[CS] Update PhpCsFixer config
1 parent 2c06bf9 commit 2ed6d9f

16 files changed

+107
-6
lines changed

config/routes.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
413

514
return function (RoutingConfigurator $routes) {

src/Component/ComponentValidationErrors.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
namespace Symfony\UX\LiveComponent\Component;
413

514
use Symfony\Component\Validator\ConstraintViolation;

src/DependencyInjection/Compiler/OptionalDependencyPass.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
namespace Symfony\UX\LiveComponent\DependencyInjection\Compiler;
413

514
use Symfony\Component\DependencyInjection\Argument\IteratorArgument;

src/EventListener/DeferLiveComponentSubscriber.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/*
6+
* This file is part of the Symfony package.
7+
*
8+
* (c) Fabien Potencier <[email protected]>
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*/
13+
514
namespace Symfony\UX\LiveComponent\EventListener;
615

716
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

src/Exception/HydrationException.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* This file is part of the Symfony package.
45
*

src/Util/DehydratedProps.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
/*
34
* This file is part of the Symfony package.
45
*

src/Util/LiveComponentStack.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/*
6+
* This file is part of the Symfony package.
7+
*
8+
* (c) Fabien Potencier <[email protected]>
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*/
13+
514
namespace Symfony\UX\LiveComponent\Util;
615

716
use Symfony\UX\LiveComponent\Attribute\AsLiveComponent;

tests/Functional/EventListener/DeferLiveComponentSubscriberTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
declare(strict_types=1);
44

5+
/*
6+
* This file is part of the Symfony package.
7+
*
8+
* (c) Fabien Potencier <[email protected]>
9+
*
10+
* For the full copyright and license information, please view the LICENSE
11+
* file that was distributed with this source code.
12+
*/
13+
514
namespace Symfony\UX\LiveComponent\Tests\Functional\EventListener;
615

716
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

tests/Functional/Form/ComponentWithFormTest.php

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

3+
declare(strict_types=1);
4+
35
/*
46
* This file is part of the Symfony package.
57
*
@@ -9,8 +11,6 @@
911
* file that was distributed with this source code.
1012
*/
1113

12-
declare(strict_types=1);
13-
1414
namespace Symfony\UX\LiveComponent\Tests\Functional\Form;
1515

1616
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

tests/Functional/Test/InteractsWithLiveComponentsTest.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
namespace Symfony\UX\LiveComponent\Tests\Functional\Test;
413

514
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

tests/Functional/ValidatableComponentTraitTest.php

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

3+
declare(strict_types=1);
4+
35
/*
46
* This file is part of the Symfony package.
57
*
@@ -9,8 +11,6 @@
911
* file that was distributed with this source code.
1012
*/
1113

12-
declare(strict_types=1);
13-
1414
namespace Symfony\UX\LiveComponent\Tests\Functional\Form;
1515

1616
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

tests/Unit/Form/ComponentWithFormTest.php

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

3+
declare(strict_types=1);
4+
35
/*
46
* This file is part of the Symfony package.
57
*
@@ -9,8 +11,6 @@
911
* file that was distributed with this source code.
1012
*/
1113

12-
declare(strict_types=1);
13-
1414
namespace Symfony\UX\LiveComponent\Tests\Unit\Form;
1515

1616
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

tests/Unit/LiveResponderTest.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
namespace Symfony\UX\LiveComponent\Tests;
413

514
use PHPUnit\Framework\TestCase;

tests/Unit/Metadata/LiveComponentMetadataTest.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
namespace Symfony\UX\LiveComponent\Tests\Unit\Metadata;
413

514
use PHPUnit\Framework\TestCase;

tests/Unit/Util/DehydratedPropsTest.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
namespace Symfony\UX\LiveComponent\Tests\Unit\Util;
413

514
use PHPUnit\Framework\TestCase;

tests/Unit/Util/LiveAttributesCollectionTest.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 Symfony package.
5+
*
6+
* (c) Fabien Potencier <[email protected]>
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
namespace Symfony\UX\LiveComponent\Tests\Unit\Util;
413

514
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

0 commit comments

Comments
 (0)