Skip to content

Commit 5359fa6

Browse files
committed
Fix CS
1 parent c1fa621 commit 5359fa6

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

features/bootstrap/HttpCacheContext.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
use Behat\Symfony2Extension\Context\KernelAwareContext;
1415
use Symfony\Component\HttpKernel\KernelInterface;
1516

src/Bridge/Doctrine/EventListener/PurgeHttpCacheListener.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
namespace ApiPlatform\Core\Bridge\Doctrine\EventListener;
1415

1516
use ApiPlatform\Core\Api\IriConverterInterface;

src/HttpCache/EventListener/AddHeadersListener.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
namespace ApiPlatform\Core\HttpCache\EventListener;
1415

1516
use ApiPlatform\Core\Util\RequestAttributesExtractor;

src/HttpCache/EventListener/AddTagsListener.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
namespace ApiPlatform\Core\HttpCache\EventListener;
1415

1516
use ApiPlatform\Core\Api\IriConverterInterface;

src/HttpCache/EventListener/PurgeListener.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
namespace ApiPlatform\Core\HttpCache\EventListener;
1415

1516
use ApiPlatform\Core\HttpCache\PurgerInterface;

src/HttpCache/PurgerInterface.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
namespace ApiPlatform\Core\HttpCache;
1415

1516
/**

src/HttpCache/VarnishPurger.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
namespace ApiPlatform\Core\HttpCache;
1415

1516
use GuzzleHttp\ClientInterface;

tests/Fixtures/NullPurger.php

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

3-
declare(strict_types=1);
43
/*
54
* This file is part of the API Platform project.
65
*
@@ -10,6 +9,8 @@
109
* file that was distributed with this source code.
1110
*/
1211

12+
declare(strict_types=1);
13+
1314
namespace ApiPlatform\Core\Tests\Fixtures;
1415

1516
use ApiPlatform\Core\HttpCache\PurgerInterface;

0 commit comments

Comments
 (0)