Test Failed
Branch v5 (6d7fa7)
by Andrew
15:44 queued 39s
created
Category
tests/bootstrap.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-echo dirname(__DIR__) . '/vendor';
4
-define('PROJECT_VENDOR_DIR', getenv('PROJECT_VENDOR_DIR') ?: dirname(__DIR__) . '/vendor');
3
+echo dirname(__DIR__).'/vendor';
4
+define('PROJECT_VENDOR_DIR', getenv('PROJECT_VENDOR_DIR') ?: dirname(__DIR__).'/vendor');
5 5
 
6
-require realpath(PROJECT_VENDOR_DIR . '/autoload.php');
6
+require realpath(PROJECT_VENDOR_DIR.'/autoload.php');
Please login to merge, or discard this patch.
ecs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 
6 6
 return static function(ECSConfig $ecsConfig): void {
7 7
     $ecsConfig->paths([
8
-        __DIR__ . '/src',
8
+        __DIR__.'/src',
9 9
         __FILE__,
10 10
     ]);
11 11
     $ecsConfig->parallel();
Please login to merge, or discard this patch.
src/web/SandboxView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * @var WebSandboxErrorHandler|ConsoleSandboxErrorHandler|null The error handler to use for the SandboxView
30 30
      */
31
-    protected WebSandboxErrorHandler|ConsoleSandboxErrorHandler|null $sandboxErrorHandler = null;
31
+    protected WebSandboxErrorHandler | ConsoleSandboxErrorHandler | null $sandboxErrorHandler = null;
32 32
 
33 33
     // Public Methods
34 34
     // =========================================================================
Please login to merge, or discard this patch.