From 2e81fbfd64a18ad025b68ebf7498788be3f16e7e Mon Sep 17 00:00:00 2001 From: Andreas Hucks Date: Tue, 14 Feb 2012 19:07:51 +0100 Subject: [PATCH] added type hint --- lib/Doctrine/ORM/Proxy/ProxyFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Proxy/ProxyFactory.php b/lib/Doctrine/ORM/Proxy/ProxyFactory.php index ed5d1560c..7e01ad7c2 100644 --- a/lib/Doctrine/ORM/Proxy/ProxyFactory.php +++ b/lib/Doctrine/ORM/Proxy/ProxyFactory.php @@ -143,7 +143,7 @@ class ProxyFactory * @param $proxyClassName * @param $file The path of the file to write to. */ - private function _generateProxyClass($class, $fileName, $file) + private function _generateProxyClass(ClassMetadata $class, $fileName, $file) { $methods = $this->_generateMethods($class); $sleepImpl = $this->_generateSleep($class);