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