From dce2d79046c731d408d13c21d3b4f0fc5f385b84 Mon Sep 17 00:00:00 2001 From: romanb Date: Sat, 3 Oct 2009 08:54:39 +0000 Subject: [PATCH] [2.0][DDC-29] Fixed --- lib/Doctrine/ORM/Proxy/ProxyClassGenerator.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/Doctrine/ORM/Proxy/ProxyClassGenerator.php b/lib/Doctrine/ORM/Proxy/ProxyClassGenerator.php index 725b7985f..36b7d5e76 100644 --- a/lib/Doctrine/ORM/Proxy/ProxyClassGenerator.php +++ b/lib/Doctrine/ORM/Proxy/ProxyClassGenerator.php @@ -156,10 +156,20 @@ class ProxyClassGenerator // We need to pick the type hint class too if (($paramClass = $param->getClass()) !== null) { $parameterString .= '\\' . $paramClass->getName() . ' '; + } else if ($param->isArray()) { + $parameterString .= 'array '; + } + + if ($param->isPassedByReference()) { + $parameterString .= '&'; } $parameterString .= '$' . $param->getName(); $argumentString .= '$' . $param->getName(); + + if ($param->isDefaultValueAvailable()) { + $parameterString .= ' = ' . var_export($param->getDefaultValue(), true); + } } $methods .= $parameterString . ') {' . PHP_EOL;