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...
35
{
36
$directory = uniqid('composer', true);
37
38
foreach ($this->steps as $step) {
39
if (0 !== $return = $step->execute($event, $directory)) {
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.