Ejemplo n.º 1
0
 public function getParameter($name)
 {
     if (!$this->parameters->get($name)) {
         throw new \Exception(sprintf('Parameter "%s" is undefined', $name));
     }
     return $this->parameters->get($name);
 }
Ejemplo n.º 2
0
 public function get($key, $default = null)
 {
     return parent::get(mb_strtolower($key), $default);
 }
Ejemplo n.º 3
0
 public function get($name)
 {
     return $this->pages->get($name);
 }