We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f30cc commit d7d8512Copy full SHA for d7d8512
src/MonitoredCommand.php
@@ -114,7 +114,7 @@ public function handle()
114
$message = $this->handleCommand();
115
116
if (! $this->isRecursive) {
117
- return $this->complete($message);
+ return $this->completeCommand($message);
118
}
119
} catch (\Exception $e) {
120
return $this->fail(
@@ -182,7 +182,7 @@ protected function hasRunTooManyTimes()
182
* @param string $message
183
* @return bool
184
*/
185
- public function complete($message = '')
+ protected function completeCommand($message = '')
186
{
187
$message = $this->stringFromMessage($message);
188
$this->output->success($message);
0 commit comments