modify plugin name

This commit is contained in:
2022-02-17 18:41:48 +08:00
parent ef274b00fc
commit 287abbfacf
+3
View File
@@ -307,6 +307,9 @@ 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];
}