luya\base\ModuleReflection::defaultRoute PHP Method

defaultRoute() public method

Inject a defaultRoute.
public defaultRoute ( string $controller, string $action = null, array $args = [] )
$controller string
$action string
$args array
    public function defaultRoute($controller, $action = null, array $args = [])
    {
        $this->_defaultRoute = ['route' => implode('/', [$this->module->id, $controller, empty($action) ? 'index' : $action]), 'args' => $args];
    }