Passed
Push — master ( d3930e...c03a9f )
by Caen
03:15
created
packages/realtime-compiler/tests/RealtimeCompilerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
packages/realtime-compiler/tests/Integration/IntegrationTestCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
packages/realtime-compiler/tests/Integration/IntegrationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.