File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Illuminate/Console/Process Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class PendingProcess
58
58
*
59
59
* @var array
60
60
*/
61
- public $ withoutOutput = false ;
61
+ public $ quietly = false ;
62
62
63
63
/**
64
64
* Indicates if TTY mode should be enabled.
@@ -173,9 +173,9 @@ public function env(array $environment)
173
173
*
174
174
* @return $this
175
175
*/
176
- public function withoutOutput ()
176
+ public function quietly ()
177
177
{
178
- $ this ->withoutOutput = true ;
178
+ $ this ->quietly = true ;
179
179
180
180
return $ this ;
181
181
}
@@ -279,7 +279,7 @@ protected function toSymfonyProcess(array|string|null $command)
279
279
$ process ->setIdleTimeout ($ this ->idleTimeout );
280
280
}
281
281
282
- if ($ this ->withoutOutput ) {
282
+ if ($ this ->quietly ) {
283
283
$ process ->disableOutput ();
284
284
}
285
285
You can’t perform that action at this time.
0 commit comments