Bugfix in short identifier shortcut with association ids
This commit is contained in:
parent
7345c795ac
commit
ca01065c6a
1 changed files with 3 additions and 1 deletions
|
@ -230,10 +230,12 @@ class ProxyFactory
|
||||||
*/
|
*/
|
||||||
private function isShortIdentifierGetter($method, $class)
|
private function isShortIdentifierGetter($method, $class)
|
||||||
{
|
{
|
||||||
|
$identifier = lcfirst(substr($method->getName(), 3));
|
||||||
return (
|
return (
|
||||||
$method->getNumberOfParameters() == 0 &&
|
$method->getNumberOfParameters() == 0 &&
|
||||||
substr($method->getName(), 0, 3) == "get" &&
|
substr($method->getName(), 0, 3) == "get" &&
|
||||||
in_array(lcfirst(substr($method->getName(), 3)), $class->identifier, true) &&
|
in_array($identifier, $class->identifier, true) &&
|
||||||
|
$class->hasField($identifier) &&
|
||||||
(($method->getEndLine() - $method->getStartLine()) <= 4)
|
(($method->getEndLine() - $method->getStartLine()) <= 4)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue