Skip to content

Commit 5b8a233

Browse files
committed
Fix coding standard
1 parent d12b302 commit 5b8a233

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

src/Bundle/DependencyInjection/Compiler/DoctrineTargetEntitiesResolverPass.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
namespace Sylius\Bundle\ResourceBundle\DependencyInjection\Compiler;
1515

16-
use Doctrine\Common\EventSubscriber;
1716
use Sylius\Bundle\ResourceBundle\DependencyInjection\Compiler\Helper\TargetEntitiesResolverInterface;
1817
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
1918
use Symfony\Component\DependencyInjection\ContainerBuilder;

tests/Application/src/Entity/Zone/Zone.php

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

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Sylius Sp. z o.o.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
declare(strict_types=1);
13+
314
namespace App\Entity\Zone;
415

5-
use Doctrine\Common\Collections\ArrayCollection;
616
use Doctrine\Common\Collections\Collection;
717
use Doctrine\ORM\Mapping as ORM;
8-
use Symfony\Component\Validator\Constraints\Country;
918

1019
#[ORM\Entity]
1120
class Zone implements ZoneInterface

tests/Application/src/Entity/Zone/ZoneInterface.php

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

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Sylius Sp. z o.o.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
declare(strict_types=1);
13+
314
namespace App\Entity\Zone;
415

516
use Sylius\Resource\Model\ResourceInterface;

tests/Application/src/Entity/Zone/ZoneMember.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
<?php
22

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Sylius Sp. z o.o.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
declare(strict_types=1);
13+
314
namespace App\Entity\Zone;
415

516
use Doctrine\ORM\Mapping as ORM;
6-
use Sylius\Resource\Model\ResourceInterface;
717

818
#[ORM\Entity]
919
class ZoneMember implements ZoneMemberInterface

tests/Application/src/Entity/Zone/ZoneMemberInterface.php

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

3+
/*
4+
* This file is part of the Sylius package.
5+
*
6+
* (c) Sylius Sp. z o.o.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
declare(strict_types=1);
13+
314
namespace App\Entity\Zone;
415

516
use Sylius\Resource\Model\ResourceInterface;

0 commit comments

Comments
 (0)