Passed
Pull Request — master (#5)
by
unknown
08:17
created
vendor/sebastian/comparator/tests/DOMNodeComparatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     public function testAcceptsSucceeds($expected, $actual): void
128 128
     {
129 129
         $this->assertTrue(
130
-          $this->comparator->accepts($expected, $actual)
130
+            $this->comparator->accepts($expected, $actual)
131 131
         );
132 132
     }
133 133
 
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     public function testAcceptsFails($expected, $actual): void
138 138
     {
139 139
         $this->assertFalse(
140
-          $this->comparator->accepts($expected, $actual)
140
+            $this->comparator->accepts($expected, $actual)
141 141
         );
142 142
     }
143 143
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/ExceptionComparatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     public function testAcceptsSucceeds($expected, $actual): void
95 95
     {
96 96
         $this->assertTrue(
97
-          $this->comparator->accepts($expected, $actual)
97
+            $this->comparator->accepts($expected, $actual)
98 98
         );
99 99
     }
100 100
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
     public function testAcceptsFails($expected, $actual): void
105 105
     {
106 106
         $this->assertFalse(
107
-          $this->comparator->accepts($expected, $actual)
107
+            $this->comparator->accepts($expected, $actual)
108 108
         );
109 109
     }
110 110
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/ArrayComparatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     public function testAcceptsSucceeds(): void
120 120
     {
121 121
         $this->assertTrue(
122
-          $this->comparator->accepts([], [])
122
+            $this->comparator->accepts([], [])
123 123
         );
124 124
     }
125 125
 
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     public function testAcceptsFails($expected, $actual): void
130 130
     {
131 131
         $this->assertFalse(
132
-          $this->comparator->accepts($expected, $actual)
132
+            $this->comparator->accepts($expected, $actual)
133 133
         );
134 134
     }
135 135
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/SplObjectStorageComparatorTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -89,10 +89,10 @@  discard block
 block discarded – undo
89 89
     public function testAcceptsSucceeds(): void
90 90
     {
91 91
         $this->assertTrue(
92
-          $this->comparator->accepts(
92
+            $this->comparator->accepts(
93 93
             new SplObjectStorage,
94 94
             new SplObjectStorage
95
-          )
95
+            )
96 96
         );
97 97
     }
98 98
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     public function testAcceptsFails($expected, $actual): void
103 103
     {
104 104
         $this->assertFalse(
105
-          $this->comparator->accepts($expected, $actual)
105
+            $this->comparator->accepts($expected, $actual)
106 106
         );
107 107
     }
108 108
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/NumericComparatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     public function testAcceptsSucceeds($expected, $actual): void
82 82
     {
83 83
         $this->assertTrue(
84
-          $this->comparator->accepts($expected, $actual)
84
+            $this->comparator->accepts($expected, $actual)
85 85
         );
86 86
     }
87 87
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     public function testAcceptsFails($expected, $actual): void
92 92
     {
93 93
         $this->assertFalse(
94
-          $this->comparator->accepts($expected, $actual)
94
+            $this->comparator->accepts($expected, $actual)
95 95
         );
96 96
     }
97 97
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/TypeComparatorTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     public function testAcceptsSucceeds($expected, $actual): void
76 76
     {
77 77
         $this->assertTrue(
78
-          $this->comparator->accepts($expected, $actual)
78
+            $this->comparator->accepts($expected, $actual)
79 79
         );
80 80
     }
81 81
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/ScalarComparatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     public function testAcceptsSucceeds($expected, $actual): void
123 123
     {
124 124
         $this->assertTrue(
125
-          $this->comparator->accepts($expected, $actual)
125
+            $this->comparator->accepts($expected, $actual)
126 126
         );
127 127
     }
128 128
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
     public function testAcceptsFails($expected, $actual): void
133 133
     {
134 134
         $this->assertFalse(
135
-          $this->comparator->accepts($expected, $actual)
135
+            $this->comparator->accepts($expected, $actual)
136 136
         );
137 137
     }
138 138
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/ResourceComparatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     public function testAcceptsSucceeds($expected, $actual): void
82 82
     {
83 83
         $this->assertTrue(
84
-          $this->comparator->accepts($expected, $actual)
84
+            $this->comparator->accepts($expected, $actual)
85 85
         );
86 86
     }
87 87
 
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     public function testAcceptsFails($expected, $actual): void
92 92
     {
93 93
         $this->assertFalse(
94
-          $this->comparator->accepts($expected, $actual)
94
+            $this->comparator->accepts($expected, $actual)
95 95
         );
96 96
     }
97 97
 
Please login to merge, or discard this patch.
vendor/sebastian/comparator/tests/ObjectComparatorTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     public function testAcceptsSucceeds($expected, $actual): void
109 109
     {
110 110
         $this->assertTrue(
111
-          $this->comparator->accepts($expected, $actual)
111
+            $this->comparator->accepts($expected, $actual)
112 112
         );
113 113
     }
114 114
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     public function testAcceptsFails($expected, $actual): void
119 119
     {
120 120
         $this->assertFalse(
121
-          $this->comparator->accepts($expected, $actual)
121
+            $this->comparator->accepts($expected, $actual)
122 122
         );
123 123
     }
124 124
 
Please login to merge, or discard this patch.