Passed
Pull Request — master (#4)
by Chad
01:31
created
tests/SelectIteratorTest.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
     public function getIteratorYeildsResults()
20 20
     {
21 21
         $iterator = new ArrayIterator(
22
-           [
23
-               ['id' => 1, 'price' => 1.0],
24
-               ['id' => 2, 'price' => 2.0],
25
-               ['id' => 2, 'price' => 2.0],
26
-           ]
22
+            [
23
+                ['id' => 1, 'price' => 1.0],
24
+                ['id' => 2, 'price' => 2.0],
25
+                ['id' => 2, 'price' => 2.0],
26
+            ]
27 27
         );
28 28
 
29 29
         $selector = function (array $item) : array {
Please login to merge, or discard this patch.
tests/LinqCollectionTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
         $expected = [
186 186
             'id' => '58339e95d5200',
187 187
             'title' => "XML Developer's Guide",
188
-             'salePrice' => 40.46,
188
+                'salePrice' => 40.46,
189 189
         ];
190 190
 
191 191
         $this->assertSame($actual, $expected);
Please login to merge, or discard this patch.