Crunz\Schedule::then PHP Method

then() public method

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;
    }