Devise\Pages\RoutesGenerator::deviseRoutesFile PHP Method

deviseRoutesFile() protected method

Returns the route cache path if the file exists
protected deviseRoutesFile ( ) : [type]
return [type]
    protected function deviseRoutesFile()
    {
        $routeCachePath = $this->Config->get('devise.routes.cache');
        if ($this->File->exists($routeCachePath)) {
            return $routeCachePath;
        }
        return null;
    }