Passed
Pull Request — 2.0 (#36)
by Donald
02:59 queued 01:27
created
test/Chekote/NounStore/Key/ResolveIndexTest.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -31,12 +31,12 @@  discard block
 block discarded – undo
31 31
     {
32 32
         return [
33 33
         //   index, nth
34
-            [    1,   0],
35
-            [    1,   1],
36
-            [    1,   5],
37
-            [    4,   0],
38
-            [    4,   4],
39
-            [    4,  10],
34
+            [1, 0],
35
+            [1, 1],
36
+            [1, 5],
37
+            [4, 0],
38
+            [4, 4],
39
+            [4, 10],
40 40
         ];
41 41
     }
42 42
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     public function invalidNthDataProvider()
61 61
     {
62 62
         return [
63
-            [  0],
63
+            [0],
64 64
             [ -1],
65 65
             [ -4],
66 66
             [-10],
@@ -86,10 +86,10 @@  discard block
 block discarded – undo
86 86
     {
87 87
         return [
88 88
         //   index, nth
89
-            [    0,   1],
90
-            [   10,  11],
91
-            [  100, 101],
92
-            [ null,  50],
89
+            [0, 1],
90
+            [10, 11],
91
+            [100, 101],
92
+            [null, 50],
93 93
         ];
94 94
     }
95 95
 
Please login to merge, or discard this patch.
test/Chekote/NounStore/Store/KeyExistsTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@
 block discarded – undo
34 34
     {
35 35
         return [
36 36
         //    key,            expectedResult
37
-            [ 'No such key',  false ], // missing key
38
-            [ StoreTest::KEY, true  ], // present key
37
+            ['No such key', false], // missing key
38
+            [StoreTest::KEY, true], // present key
39 39
         ];
40 40
     }
41 41
 
Please login to merge, or discard this patch.
test/Chekote/NounStore/Key/ParseTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -25,12 +25,12 @@
 block discarded – undo
25 25
     {
26 26
         return [
27 27
         //   key             parsedKey, parsedIndex
28
-            ['Thing',       'Thing',           null],
29
-            ['1st Thing',   'Thing',              0],
30
-            ['2nd Thing',   'Thing',              1],
31
-            ['3rd Thing',   'Thing',              2],
32
-            ['4th Thing',   'Thing',              3],
33
-            ['478th Thing', 'Thing',            477],
28
+            ['Thing', 'Thing', null],
29
+            ['1st Thing', 'Thing', 0],
30
+            ['2nd Thing', 'Thing', 1],
31
+            ['3rd Thing', 'Thing', 2],
32
+            ['4th Thing', 'Thing', 3],
33
+            ['478th Thing', 'Thing', 477],
34 34
         ];
35 35
     }
36 36
 
Please login to merge, or discard this patch.