Autarky\Routing\Configuration::merge PHP Méthode

merge() public méthode

Merge more routes into the configuration.
public merge ( array $routes ) : void
$routes array
Résultat void
    public function merge(array $routes)
    {
        foreach ($routes as $name => $route) {
            $this->override($name, $route);
        }
    }