Fix CS
This commit is contained in:
parent
2e90cd9924
commit
99ab58febd
1 changed files with 3 additions and 3 deletions
|
@ -69,6 +69,7 @@ class IdentityFunction extends FunctionNode
|
||||||
$joinColumn = null;
|
$joinColumn = null;
|
||||||
|
|
||||||
foreach ($assoc['joinColumns'] as $mapping) {
|
foreach ($assoc['joinColumns'] as $mapping) {
|
||||||
|
|
||||||
if($mapping['referencedColumnName'] === $field['columnName']) {
|
if($mapping['referencedColumnName'] === $field['columnName']) {
|
||||||
$joinColumn = $mapping;
|
$joinColumn = $mapping;
|
||||||
|
|
||||||
|
@ -97,14 +98,13 @@ class IdentityFunction extends FunctionNode
|
||||||
|
|
||||||
$this->pathExpression = $parser->SingleValuedAssociationPathExpression();
|
$this->pathExpression = $parser->SingleValuedAssociationPathExpression();
|
||||||
|
|
||||||
if ($parser->getLexer()->lookahead['type'] == Lexer::T_COMMA) {
|
if ($parser->getLexer()->isNextToken(Lexer::T_COMMA)) {
|
||||||
$parser->match(Lexer::T_COMMA);
|
$parser->match(Lexer::T_COMMA);
|
||||||
$parser->match(Lexer::T_STRING);
|
$parser->match(Lexer::T_STRING);
|
||||||
|
|
||||||
$this->fieldMapping = $parser->getLexer()->token['value'];
|
$this->fieldMapping = $parser->getLexer()->token['value'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$parser->match(Lexer::T_CLOSE_PARENTHESIS);
|
$parser->match(Lexer::T_CLOSE_PARENTHESIS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue