Passed
Push — php8 ( 1b03c2...bfd818 )
by Donald
28:48 queued 03:34
created
test/Unit/Chekote/NounStore/Assert/AssertTestCase.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
 
11 11
 abstract class AssertTestCase extends TestCase
12 12
 {
13
-    protected IMock|AssertPhake $assert;
13
+    protected IMock | AssertPhake $assert;
14 14
 
15
-    protected IMock|StorePhake $store;
15
+    protected IMock | StorePhake $store;
16 16
 
17
-    protected IMock|KeyPhake $key;
17
+    protected IMock | KeyPhake $key;
18 18
 
19 19
     /**
20 20
      * Sets up the environment before each test.
Please login to merge, or discard this patch.
test/Unit/Chekote/NounStore/Store/StoreTestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 
11 11
 abstract class StoreTestCase extends TestCase
12 12
 {
13
-    protected IMock|KeyPhake $key;
13
+    protected IMock | KeyPhake $key;
14 14
 
15
-    protected IMock|StorePhake $store;
15
+    protected IMock | StorePhake $store;
16 16
 
17 17
     /** the first value stored under self::KEY */
18 18
     protected static stdClass $firstValue;
Please login to merge, or discard this patch.
test/Unit/Chekote/NounStore/Key/KeyTestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     const INVALID_KEY = "It's's invalid because of the double apostrophe";
12 12
 
13
-    protected IMock|KeyPhake $key;
13
+    protected IMock | KeyPhake $key;
14 14
 
15 15
     /**
16 16
      * Sets up the environment before each test.
Please login to merge, or discard this patch.