@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | 'storage/logs', |
22 | 22 | ]); |
23 | 23 | set('log_files', 'storage/logs/*.log'); |
24 | -set('laravel_version', function () { |
|
24 | +set('laravel_version', function() { |
|
25 | 25 | $result = run('{{bin/php}} {{release_or_current_path}}/artisan --version'); |
26 | 26 | preg_match_all('/(\d+\.?)+/', $result, $matches); |
27 | 27 | return $matches[0][0] ?? 5.5; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | */ |
45 | 45 | function artisan($command, $options = []) |
46 | 46 | { |
47 | - return function () use ($command, $options) { |
|
47 | + return function() use ($command, $options) { |
|
48 | 48 | |
49 | 49 | // Ensure the artisan command is available on the current version. |
50 | 50 | $versionTooEarly = array_key_exists('min', $options) |