Skip to content

Commit

Permalink
Merge pull request #144 from Ocramius/hotfix/php-analyzer
Browse files Browse the repository at this point in the history
Removing potential bug caused by invalid `static` keyword usage
  • Loading branch information
Ocramius committed Feb 6, 2014
2 parents 40a89a7 + a7ae822 commit 36371f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProxyManager/Generator/ParameterGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 36371f1

Please sign in to comment.