Skip to content

Commit a9f6a67

Browse files
authored
Merge pull request #1059 from dunglas/cs
Fix CS
2 parents 020dbf2 + 2f26d2f commit a9f6a67

File tree

10 files changed

+20
-0
lines changed

10 files changed

+20
-0
lines changed

src/Bridge/Doctrine/Orm/Filter/ExistsFilter.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Bridge\Doctrine\Orm\Filter;
1315

1416
use ApiPlatform\Core\Bridge\Doctrine\Orm\Util\QueryNameGeneratorInterface;

src/Bridge/Doctrine/Orm/Util/IdentifierManagerTrait.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Bridge\Doctrine\Orm\Util;
1315

1416
use ApiPlatform\Core\Exception\PropertyNotFoundException;

src/EventListener/DenyAccessListener.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\EventListener;
1315

1416
use ApiPlatform\Core\Metadata\Resource\Factory\ResourceMetadataFactoryInterface;

tests/Bridge/Doctrine/Orm/Filter/ExistsFilterTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Tests\Doctrine\Orm\Filter;
1315

1416
use ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\ExistsFilter;

tests/Bridge/Doctrine/Util/IdentifierManagerTraitTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Tests\Doctrine\Util;
1315

1416
use ApiPlatform\Core\Bridge\Doctrine\Orm\Util\IdentifierManagerTrait;

tests/EventListener/DenyAccessListenerTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Tests\EventListener;
1315

1416
use ApiPlatform\Core\EventListener\DenyAccessListener;

tests/Fixtures/TestBundle/Controller/CustomActionController.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Tests\Fixtures\TestBundle\Controller;
1315

1416
use ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\CustomActionDummy;

tests/Fixtures/TestBundle/Entity/CustomActionDummy.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity;
1315

1416
use ApiPlatform\Core\Annotation\ApiResource;

tests/Fixtures/TestBundle/Entity/SecuredDummy.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity;
1315

1416
use ApiPlatform\Core\Annotation\ApiResource;

tests/Fixtures/TestBundle/Entity/UpperCaseIdentifierDummy.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
* file that was distributed with this source code.
1010
*/
1111

12+
declare(strict_types=1);
13+
1214
namespace ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity;
1315

1416
use ApiPlatform\Core\Annotation\ApiResource;

0 commit comments

Comments
 (0)