1
0
mirror of synced 2025-01-18 14:31:40 +03:00

[2.0][DDC-28] Fixed

This commit is contained in:
romanb 2009-10-03 08:44:53 +00:00
parent d3599de14a
commit b444ec0139

View File

@ -140,7 +140,7 @@ class ProxyClassGenerator
continue; continue;
} }
if ($method->isPublic() && ! $method->isFinal()) { if ($method->isPublic() && ! $method->isFinal() && ! $method->isStatic()) {
$methods .= PHP_EOL . 'public function ' . $method->getName() . '('; $methods .= PHP_EOL . 'public function ' . $method->getName() . '(';
$firstParam = true; $firstParam = true;
$parameterString = $argumentString = ''; $parameterString = $argumentString = '';