Passed
Branch master (6c4ac7)
by Victor
02:04
created
Category
tests/Fixtures/ProductListPresentationModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot\Tests\Fixtures;
5 5
 
Please login to merge, or discard this patch.
tests/Fixtures/ViewCallback.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot\Tests\Fixtures;
5 5
 
Please login to merge, or discard this patch.
tests/Middleware/PresenterMiddlewareTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot\Tests\Middleware;
5 5
 
Please login to merge, or discard this patch.
tests/Middleware/LoggingMiddlewareTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot\Tests\Middleware;
5 5
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     {
21 21
         $wasCalled = false;
22 22
 
23
-        $logger = new Logger(function ($level, $message, $context) use (&$wasCalled) {
23
+        $logger = new Logger(function($level, $message, $context) use (&$wasCalled) {
24 24
             $this->assertSame(LogLevel::DEBUG, $level);
25 25
             $this->assertSame('product.twig', $message);
26 26
             $this->assertArrayHasKey('presentation_model', $context);
Please login to merge, or discard this patch.
src/HasPresenterInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot;
5 5
 
Please login to merge, or discard this patch.
src/PresentationModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot;
5 5
 
Please login to merge, or discard this patch.
src/MiddlewareInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot;
5 5
 
Please login to merge, or discard this patch.
src/Context.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot;
5 5
 
Please login to merge, or discard this patch.
src/ContextInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Shoot\Shoot;
5 5
 
Please login to merge, or discard this patch.