@@ -1,6 +1,6 @@ |
||
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'); |
@@ -5,7 +5,7 @@ |
||
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(); |
@@ -28,7 +28,7 @@ |
||
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 | // ========================================================================= |