Skip to content

Commit c256c1d

Browse files
authored
Ignore Symfony console default options (#1133)
* ignore default symfony options * cs * simplify * version not needed
1 parent baa6959 commit c256c1d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Console/DuskCommand.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,12 @@ public function handle()
6868

6969
$options = collect($_SERVER['argv'])
7070
->slice(2)
71-
->diff(['--browse', '--without-tty'])
71+
->diff([
72+
'--browse', '--without-tty',
73+
'--quiet', '-q',
74+
'--verbose', '-v', '-vv', '-vvv',
75+
'--no-interaction', '-n',
76+
])
7277
->values()
7378
->all();
7479

0 commit comments

Comments
 (0)