Devise\Pages\RoutesGenerator::clearDeviseRoutes PHP Method

clearDeviseRoutes() protected method

Remove the temporary devise routes file
protected clearDeviseRoutes ( ) : [type]
return [type]
    protected function clearDeviseRoutes()
    {
        $routeCachePath = $this->Config->get('devise.routes.cache');
        if ($this->File->exists($routeCachePath)) {
            $this->File->delete($routeCachePath);
        }
    }