diff --git a/Container.php b/Container.php index 39163d2..0bb8c37 100644 --- a/Container.php +++ b/Container.php @@ -307,9 +307,6 @@ class Container implements ContainerInterface */ public function getMethodParameters(string $className, string $method): ?array { - $reflectMethod = $this->getReflectMethod($this->getReflect($className), $method); - - return $this->resolveMethodParameters($reflectMethod); if (isset($this->_parameters[$className]) && isset($this->_parameters[$className][$method])) { return $this->_parameters[$className][$method]; }