Passed
Pull Request — 3.0 (#30)
by Donald
02:08
created
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.