Пример #1
0
 /**
  * @param $name
  * @return mixed
  * @throws MvcException
  */
 public function __get($name)
 {
     if (static::$container->has($name)) {
         return static::$container->get($name);
     } else {
         throw new MvcException("Service '{$name}' not found on default container");
     }
 }