@@ -10,11 +10,11 @@ |
||
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. |
@@ -10,9 +10,9 @@ |
||
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; |
@@ -10,7 +10,7 @@ |
||
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. |
@@ -45,7 +45,7 @@ discard block |
||
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'); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @return AnswerBinderProxy|StubberProxy |
69 | 69 | */ |
70 | - public function __call(string $method, array $args): AnswerBinderProxy|StubberProxy |
|
70 | + public function __call(string $method, array $args): AnswerBinderProxy | StubberProxy |
|
71 | 71 | { |
72 | 72 | // record the method and args for verification later |
73 | 73 | $this->method = $method; |