Webiny\Component\Router\Route\RouteCollection::add PHP Method

add() public method

Adds a Route to the end of current collection.
public add ( string $name, Route $route )
$name string Route name.
$route Route Instance of Route.
    public function add($name, Route $route)
    {
        $this->routes[$name] = $route;
    }

Usage Example

Example #1
0
 /**
  * Builds and returns RouteCollection instance.
  *
  * @return RouteCollection
  */
 public function getRouteCollection()
 {
     foreach ($this->config as $name => $routeConfig) {
         $this->routeCollection->add($name, $this->processRoute($routeConfig));
     }
     unset($this->config);
     return $this->routeCollection;
 }
All Usage Examples Of Webiny\Component\Router\Route\RouteCollection::add