Skip to content

Commit d7d8512

Browse files
committed
renamed method to avoid falling back on symfony method
1 parent 11f30cc commit d7d8512

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MonitoredCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function handle()
114114
$message = $this->handleCommand();
115115

116116
if (! $this->isRecursive) {
117-
return $this->complete($message);
117+
return $this->completeCommand($message);
118118
}
119119
} catch (\Exception $e) {
120120
return $this->fail(
@@ -182,7 +182,7 @@ protected function hasRunTooManyTimes()
182182
* @param string $message
183183
* @return bool
184184
*/
185-
public function complete($message = '')
185+
protected function completeCommand($message = '')
186186
{
187187
$message = $this->stringFromMessage($message);
188188
$this->output->success($message);

0 commit comments

Comments
 (0)