@@ -35,8 +35,8 @@ |
||
| 35 | 35 | { |
| 36 | 36 | return [ |
| 37 | 37 | // storedValue, checkedValue, expectedResult |
| 38 | - [ new stdClass(), stdClass::class, true ], |
|
| 39 | - [ new stdClass(), KeyIsClassTest::class, false ], |
|
| 38 | + [new stdClass(), stdClass::class, true], |
|
| 39 | + [new stdClass(), KeyIsClassTest::class, false], |
|
| 40 | 40 | ]; |
| 41 | 41 | } |
| 42 | 42 | |
@@ -9,11 +9,11 @@ |
||
| 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. |
@@ -11,9 +11,9 @@ |
||
| 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; |
@@ -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|null $key; |
|
| 13 | + protected IMock | KeyPhake | null $key; |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Sets up the environment before each test. |