Skip to content

Commit e982c0a

Browse files
committed
quietly method
1 parent 4dd8d82 commit e982c0a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Illuminate/Console/Process/PendingProcess.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class PendingProcess
5858
*
5959
* @var array
6060
*/
61-
public $withoutOutput = false;
61+
public $quietly = false;
6262

6363
/**
6464
* Indicates if TTY mode should be enabled.
@@ -173,9 +173,9 @@ public function env(array $environment)
173173
*
174174
* @return $this
175175
*/
176-
public function withoutOutput()
176+
public function quietly()
177177
{
178-
$this->withoutOutput = true;
178+
$this->quietly = true;
179179

180180
return $this;
181181
}
@@ -279,7 +279,7 @@ protected function toSymfonyProcess(array|string|null $command)
279279
$process->setIdleTimeout($this->idleTimeout);
280280
}
281281

282-
if ($this->withoutOutput) {
282+
if ($this->quietly) {
283283
$process->disableOutput();
284284
}
285285

0 commit comments

Comments
 (0)