Exemplo n.º 1
0
 /**
  * Get service
  *
  * @param string $service
  * @return mixed
  */
 public function getService($service)
 {
     if (!$this->container->hasService($service)) {
         throw new InvalidArgumentException("Service '{$service}' not found");
     }
     return $this->container->getService($service);
 }