/**
  * Gets all service ids.
  *
  * @return array An array of all defined service ids
  *
  * @api
  * @since 3.1.0
  */
 public function getServiceIds()
 {
     return $this->_delegate->getServiceIds();
 }
Esempio n. 2
0
 /**
  * Gets all service ids.
  *
  * @return array An array of all defined service ids
  */
 public function getServiceIds()
 {
     return array_unique(array_merge(array_keys($this->getDefinitions()), array_keys($this->aliasDefinitions), parent::getServiceIds()));
 }