Passed
Push — php8 ( 534f41...b5870c )
by Donald
01:51
created
test/Unit/Chekote/NounStore/Assert/AssertTestCase.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,11 +9,11 @@
 block discarded – undo
9 9
 
10 10
 abstract class AssertTestCase extends TestCase
11 11
 {
12
-    protected IMock|AssertPhake|null $assert;
12
+    protected IMock | AssertPhake | null $assert;
13 13
 
14
-    protected IMock|StorePhake|null $store;
14
+    protected IMock | StorePhake | null $store;
15 15
 
16
-    protected IMock|KeyPhake|null $key;
16
+    protected IMock | KeyPhake | null $key;
17 17
 
18 18
     /**
19 19
      * 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
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 
12 12
 abstract class StoreTestCase extends TestCase
13 13
 {
14
-    protected IMock|KeyPhake|null $key;
14
+    protected IMock | KeyPhake | null $key;
15 15
 
16
-    protected IMock|StorePhake|null $store;
16
+    protected IMock | StorePhake | null $store;
17 17
 
18 18
     /** the first value stored under self::KEY */
19 19
     protected static stdClass $FIRST_VALUE;
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|null $key;
13
+    protected IMock | KeyPhake | null $key;
14 14
 
15 15
     /**
16 16
      * Sets up the environment before each test.
Please login to merge, or discard this patch.
test/Unit/Chekote/Phake/Expectation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * @throws ExpectationException        if args have not been set for the expectation.
46 46
      * @return array|VerifierProxy
47 47
      */
48
-    public function verify(): array|VerifierProxy
48
+    public function verify(): array | VerifierProxy
49 49
     {
50 50
         if (!isset($this->method)) {
51 51
             throw new ExpectationException('Expectation method was not set');
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @param  array                      $args   the args that are expected to be passed to the method.
67 67
      * @return AnswerBinderProxy|StubberProxy
68 68
      */
69
-    public function __call(string $method, array $args): AnswerBinderProxy|StubberProxy
69
+    public function __call(string $method, array $args): AnswerBinderProxy | StubberProxy
70 70
     {
71 71
         // record the method and args for verification later
72 72
         $this->method = $method;
Please login to merge, or discard this patch.