Autarky\Routing\Route::addAfterHook PHP Method

addAfterHook() public method

Add an after hook.
public addAfterHook ( string $hook )
$hook string
    public function addAfterHook($hook)
    {
        if (!isset($this->options['after'])) {
            $this->options['after'] = [];
        }
        $this->options['after'][] = $hook;
    }