processRoute() public method

Builds a Route instance based on the given route config.
public processRoute ( ConfigObject $routeConfig ) : Route
$routeConfig Webiny\Component\Config\ConfigObject A config object containing route parameters.
return Webiny\Component\Router\Route\Route
Example #1
0
 /**
  * Adds a route to the beginning of the current route collection.
  *
  * @param ConfigObject $routes An instance of ConfigObject holding the routes.
  *
  * @return $this
  */
 public function prependRoutes(ConfigObject $routes)
 {
     foreach ($routes as $name => $routeConfig) {
         self::$routeCollection->prepend($name, $this->loader->processRoute($routeConfig));
     }
     return $this;
 }