Graze\Supervisor\SupervisorSupervisor::start PHP Method

start() public method

public start ( callable $fn = null ) : Graze\Supervisor\SupervisorInterface
$fn callable
return Graze\Supervisor\SupervisorInterface
    public function start(callable $fn = null)
    {
        $this->reset(0);
        foreach ($this->supervisors as $supervisor) {
            $supervisor->start($fn);
        }
        return $this;
    }