From 0bf824b66ec3d9a91bcf737fab5815cbc44d761b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Thu, 17 Feb 2022 18:57:17 +0800 Subject: [PATCH] modify plugin name --- Container.php | 3 --- 1 file changed, 3 deletions(-) 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]; }