Skip to content

Commit 4f82814

Browse files
committed
Apply fixes from StyleCI
1 parent 4098b67 commit 4f82814

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/Commands/QuickStartCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ protected function uncommentApiRoutesFile()
5959
$content = file_get_contents($appBootstrapPath);
6060

6161
if (str_contains($content, '// api: ')) {
62-
(new Filesystem)->replaceInFile(
62+
(new Filesystem())->replaceInFile(
6363
'// api: ',
6464
'api: ',
6565
$appBootstrapPath,
6666
);
6767
} elseif (str_contains($content, 'web: __DIR__.\'/../routes/web.php\',') && !str_contains($content, 'api: __DIR__.\'/../routes/api.php\',')) {
68-
(new Filesystem)->replaceInFile(
68+
(new Filesystem())->replaceInFile(
6969
'web: __DIR__.\'/../routes/web.php\',',
7070
'web: __DIR__.\'/../routes/web.php\','.PHP_EOL.' api: __DIR__.\'/../routes/api.php\',',
7171
$appBootstrapPath,

0 commit comments

Comments
 (0)