Commit b444ec01 authored by romanb's avatar romanb

[2.0][DDC-28] Fixed

parent d3599de1
......@@ -140,7 +140,7 @@ class ProxyClassGenerator
continue;
}
if ($method->isPublic() && ! $method->isFinal()) {
if ($method->isPublic() && ! $method->isFinal() && ! $method->isStatic()) {
$methods .= PHP_EOL . 'public function ' . $method->getName() . '(';
$firstParam = true;
$parameterString = $argumentString = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment