Overrides Driver::defer
public function defer(\Closure $closure) : string { $id = $this->driver ->defer(function (...$args) use ($closure) { $this->cancel($args[0]); return $closure(...$args); }); $this->creationTraces[$id] = $this->formatStacktrace(\debug_backtrace(\DEBUG_BACKTRACE_IGNORE_ARGS)); $this->enabledCallbacks[$id] = true; return $id; }