From a7ae822fff18b04471dc3db63d4c384417bf80a5 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Thu, 6 Feb 2014 14:13:28 +0100 Subject: [PATCH] Removing potential bug caused by invalid `static` keyword usage --- src/ProxyManager/Generator/ParameterGenerator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ProxyManager/Generator/ParameterGenerator.php b/src/ProxyManager/Generator/ParameterGenerator.php index 7c28b7ecc..8483b08cf 100644 --- a/src/ProxyManager/Generator/ParameterGenerator.php +++ b/src/ProxyManager/Generator/ParameterGenerator.php @@ -43,7 +43,7 @@ public static function fromReflection(ParameterReflection $reflectionParameter) $param->setName($reflectionParameter->getName()); $param->setPosition($reflectionParameter->getPosition()); - $type = static::extractParameterType($reflectionParameter); + $type = self::extractParameterType($reflectionParameter); if (null !== $type) { $param->setType($type);