Webiny\Component\Router\Route\Route::compile PHP Method

compile() public method

Compiles the route object and returns an instance of CompiledRoute.
public compile ( ) : CompiledRoute
return CompiledRoute
    public function compile()
    {
        if ($this->isNull($this->compiledRoute)) {
            $this->compiledRoute = RouteCompiler::compile($this);
        }
        return $this->compiledRoute;
    }