/**
  * Test if a service exists in the container
  *
  * @param   string  $name
  * @return  mixed
  */
 public function hasService($name)
 {
     return (bool) $this->_services->offsetExists($name);
 }