getDefinition()->getEntityFqcn(); } public function __call($method, $args) { foreach($this->getServices() as $serviceClass) { if(method_exists($serviceClass, $method)) { return call_user_func_array( [$serviceClass::getInstance(), $method], $args ); } } throw new ErrorException('La méthode '.$method.' est introuvable dans les services du module '.get_class($this)); } }