Crunz\Schedule::then PHP Метод

then() публичный Метод

Register a callback to be called after the operation.
public then ( Closure $callback )
$callback Closure
    public function then(\Closure $callback)
    {
        $this->afterCallbacks[] = $callback;
        return $this;
    }