The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
15
{
16
return $this->command->option('git');
17
}
18
19
public function call()
20
{
21
if ($this->shouldPerformService()) {
22
foreach ($this->command->filesToBeOpened as $file) {
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.