Passed
Push — v5 ( d8021b...6f63c4 )
by Andrew
19:19 queued 14:18
created
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.
tests/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-define('PROJECT_VENDOR_DIR', getenv('PROJECT_VENDOR_DIR') ?: dirname(__DIR__) . '/vendor');
3
+define('PROJECT_VENDOR_DIR', getenv('PROJECT_VENDOR_DIR') ?: dirname(__DIR__).'/vendor');
4 4
 
5
-require realpath(PROJECT_VENDOR_DIR . '/autoload.php');
5
+require realpath(PROJECT_VENDOR_DIR.'/autoload.php');
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
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     /**
24 24
      * @var WebSandboxErrorHandler|ConsoleSandboxErrorHandler|null The error handler to use for the SandboxView
25 25
      */
26
-    public WebSandboxErrorHandler|ConsoleSandboxErrorHandler|null $sandboxErrorHandler = null;
26
+    public WebSandboxErrorHandler | ConsoleSandboxErrorHandler | null $sandboxErrorHandler = null;
27 27
 
28 28
     // Public Methods
29 29
     // =========================================================================
Please login to merge, or discard this patch.