-
-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add embeddable support #17
Conversation
512efdc
to
c2dc83d
Compare
c2dc83d
to
b86d605
Compare
src/Bundle/test/src/AppBundle/Resources/config/doctrine/Price.orm.yml
Outdated
Show resolved
Hide resolved
493e215
to
ee6ee68
Compare
continue; | ||
} | ||
/** @var Join[] $joins */ | ||
$joins = array_merge([], ...array_values($this->queryBuilder->getDQLPart('join'))); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
array_merge([], ...array_values($this->queryBuilder->getDQLPart('join')));
maybe it could be some (even private static) helper function at the end of file with meaningful name like flattenArray?
@@ -26,7 +26,8 @@ | |||
"id": "@integer@", | |||
"name": "American" | |||
} | |||
} | |||
}, | |||
"price": "@array@" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we assert values here?
No description provided.