container = $container; $this->config = $container->get('config'); $this->routes = $this->config->__get('routes'); } /** * Retreive the appropriate value for the routing key * * @param string $key * @return mixed */ public function __get($key) { $routing_config = $this->config->routing; if (array_key_exists($key, $routing_config)) { return $routing_config[$key]; } } } // End of RoutingBase.php