Skip to content

Commit ab7de1f

Browse files
committed
Avoid collision with Symonfy
1 parent e65f40f commit ab7de1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/Commands/CurlCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class CurlCommand extends Command
99
{
10-
protected $signature = 'shift:curl {--X|request=} {--G|get} {--H|header=*} {--d|data=*} {--data-urlencode=*} {--data-raw=*} {--F|form=*} {--digest} {--basic} {--connect-timeout=} {--max-timeout=} {--retry=} {--s|silent} {--u|user=} {--L|location} {--compressed} {--insecure} {url}';
10+
protected $signature = 'shift:curl {--X|request=} {--G|get} {--H|header=*} {--d|data=*} {--data-urlencode=*} {--data-raw=*} {--F|form=*} {--digest} {--basic} {--connect-timeout=} {--max-timeout=} {--retry=} {--s|curl-silent} {--u|user=} {--L|location} {--compressed} {--insecure} {url}';
1111

1212
protected $description = 'Convert a UNIX curl request to an HTTP Client request';
1313

@@ -38,7 +38,7 @@ private function gatherOptions()
3838
'connectTimeout' => $this->option('connect-timeout'),
3939
'maxTimeout' => $this->option('max-timeout'),
4040
'retry' => $this->option('retry'),
41-
'silent' => $this->option('silent'),
41+
'silent' => $this->option('curl-silent'),
4242
'user' => $this->option('user'),
4343
'compressed' => $this->option('compressed'),
4444
'insecure' => $this->option('insecure'),

0 commit comments

Comments
 (0)