Completed
Push — master ( c7f0ae...412313 )
by James
9s
created
src/Comparator.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 Roave\ApiCompare;
5 5
 
Please login to merge, or discard this patch.
src/Factory/DirectoryReflectorFactory.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 Roave\ApiCompare\Factory;
5 5
 
Please login to merge, or discard this patch.
test/unit/ComparatorTest.php 1 patch
Spacing   +3 added lines, -3 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 RoaveTest\ApiCompare;
5 5
 
@@ -22,8 +22,8 @@  discard block
 block discarded – undo
22 22
                 '[BC] Class ClassGone has been deleted',
23 23
             ],
24 24
             (new Comparator())->compare(
25
-                $reflectorFactory->__invoke(__DIR__ . '/../asset/api/old'),
26
-                $reflectorFactory->__invoke(__DIR__ . '/../asset/api/new')
25
+                $reflectorFactory->__invoke(__DIR__.'/../asset/api/old'),
26
+                $reflectorFactory->__invoke(__DIR__.'/../asset/api/new')
27 27
             )
28 28
         );
29 29
     }
Please login to merge, or discard this patch.
test/asset/api/old/Thing.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
 class Thing
5 5
 {
Please login to merge, or discard this patch.
test/asset/api/old/ClassGone.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
 class ClassGone
5 5
 {
Please login to merge, or discard this patch.
test/asset/api/new/Thing.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
 class Thing
5 5
 {
Please login to merge, or discard this patch.
test/unit/StringReflectorFactory.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 RoaveTest\ApiCompare;
5 5
 
Please login to merge, or discard this patch.