Completed
Pull Request — master (#34)
by Marco
02:42 queued 30s
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/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.
test/unit/Formatter/SymfonyConsoleTextFormatterTest.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\Formatter;
5 5
 
Please login to merge, or discard this patch.
test/unit/ChangeTest.php 1 patch
Spacing   +13 added lines, -13 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
 
@@ -15,8 +15,8 @@  discard block
 block discarded – undo
15 15
     {
16 16
         $changeText = uniqid('changeText', true);
17 17
         self::assertSame(
18
-            '     ADDED: ' . $changeText,
19
-            (string)Change::added($changeText, false)
18
+            '     ADDED: '.$changeText,
19
+            (string) Change::added($changeText, false)
20 20
         );
21 21
     }
22 22
 
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $changeText = uniqid('changeText', true);
26 26
         self::assertSame(
27
-            '[BC] ADDED: ' . $changeText,
28
-            (string)Change::added($changeText, true)
27
+            '[BC] ADDED: '.$changeText,
28
+            (string) Change::added($changeText, true)
29 29
         );
30 30
     }
31 31
 
@@ -33,8 +33,8 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $changeText = uniqid('changeText', true);
35 35
         self::assertSame(
36
-            '     CHANGED: ' . $changeText,
37
-            (string)Change::changed($changeText, false)
36
+            '     CHANGED: '.$changeText,
37
+            (string) Change::changed($changeText, false)
38 38
         );
39 39
     }
40 40
 
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     {
43 43
         $changeText = uniqid('changeText', true);
44 44
         self::assertSame(
45
-            '[BC] CHANGED: ' . $changeText,
46
-            (string)Change::changed($changeText, true)
45
+            '[BC] CHANGED: '.$changeText,
46
+            (string) Change::changed($changeText, true)
47 47
         );
48 48
     }
49 49
 
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $changeText = uniqid('changeText', true);
53 53
         self::assertSame(
54
-            '     REMOVED: ' . $changeText,
55
-            (string)Change::removed($changeText, false)
54
+            '     REMOVED: '.$changeText,
55
+            (string) Change::removed($changeText, false)
56 56
         );
57 57
     }
58 58
 
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
     {
61 61
         $changeText = uniqid('changeText', true);
62 62
         self::assertSame(
63
-            '[BC] REMOVED: ' . $changeText,
64
-            (string)Change::removed($changeText, true)
63
+            '[BC] REMOVED: '.$changeText,
64
+            (string) Change::removed($changeText, true)
65 65
         );
66 66
     }
67 67
 }
Please login to merge, or discard this patch.
test/unit/ChangesTest.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.