@@ -20,7 +20,7 @@ |
||
| 20 | 20 | |
| 21 | 21 | define('BASE_PATH', realpath(__DIR__.'/../../../')); |
| 22 | 22 | |
| 23 | - if (BASE_PATH === false || ! file_exists(BASE_PATH.'/hyde')) { |
|
| 23 | + if (BASE_PATH === false || !file_exists(BASE_PATH.'/hyde')) { |
|
| 24 | 24 | throw new InvalidArgumentException('This test suite must be run from the root of the hydephp/develop monorepo.'); |
| 25 | 25 | } |
| 26 | 26 | } |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | throw new InvalidArgumentException('This test suite is not intended to be run from the monorepo.'); |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | - if (! self::hasTestRunnerSetUp()) { |
|
| 23 | + if (!self::hasTestRunnerSetUp()) { |
|
| 24 | 24 | self::setUpTestRunner(); |
| 25 | 25 | } |
| 26 | 26 | |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | // Assert that the server was started successfully |
| 63 | - if (! self::$server) { |
|
| 63 | + if (!self::$server) { |
|
| 64 | 64 | throw new RuntimeException('Failed to start the test server.'); |
| 65 | 65 | } |
| 66 | 66 | } |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | |
| 22 | 22 | public function testNestedIndexPageRouting() |
| 23 | 23 | { |
| 24 | - if (! is_dir($this->projectPath('_pages/about'))) { |
|
| 24 | + if (!is_dir($this->projectPath('_pages/about'))) { |
|
| 25 | 25 | mkdir($this->projectPath('_pages/about'), 0755, true); |
| 26 | 26 | } |
| 27 | 27 | |