Skip to content

Commit

Permalink
Merge pull request doctrine#284 from meandmymonkey/docblock-fix
Browse files Browse the repository at this point in the history
docblock/typehint fix
  • Loading branch information
Guilherme Blanco committed Feb 14, 2012
2 parents 38d725c + 1d92754 commit e5d1f9e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/Doctrine/ORM/Proxy/ProxyFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ public function generateProxyClasses(array $classes, $toDir = null)
/**
* Generates a proxy class file.
*
* @param $class
* @param $proxyClassName
* @param $file The path of the file to write to.
* @param ClassMetadata $class Metadata for the original class
* @param string $fileName Filename (full path) for the generated class
* @param string $file The proxy class template data
*/
private function _generateProxyClass($class, $fileName, $file)
private function _generateProxyClass(ClassMetadata $class, $fileName, $file)
{
$methods = $this->_generateMethods($class);
$sleepImpl = $this->_generateSleep($class);
Expand Down Expand Up @@ -272,7 +272,7 @@ private function _generateMethods(ClassMetadata $class)
* @param ClassMetadata $class
* @return bool
*/
private function isShortIdentifierGetter($method, $class)
private function isShortIdentifierGetter($method, ClassMetadata $class)
{
$identifier = lcfirst(substr($method->getName(), 3));
$cheapCheck = (
Expand Down

0 comments on commit e5d1f9e

Please sign in to comment.