We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is the Symfony2 error I get, after the library installation, when adding the config and clearing the cache
The text was updated successfully, but these errors were encountered:
IIRC with doctrine, you have 2 ways of configuring entity managers, one "helper" that makes only one entity manager available :
doctrine: orm: mappings: [] auto_mapping: false
and the other one that is more verbose but supports multiple entity managers:
doctrine: orm: entity_managers: some_em: mappings: [] auto_mapping: false
Either you need to use the first syntax with:
doctrine: orm: dql: numeric_functions: rand: Mapado\MysqlDoctrineFunctions\DQL\MysqlRand round: Mapado\MysqlDoctrineFunctions\DQL\MysqlRound datetime_functions: date: Mapado\MysqlDoctrineFunctions\DQL\MysqlDate date_format: Mapado\MysqlDoctrineFunctions\DQL\MysqlDateFormat # ... add all functions you need
or you need to switch to the verbose syntax
Sorry, something went wrong.
No branches or pull requests
This is the Symfony2 error I get, after the library installation, when adding the config and clearing the cache
The text was updated successfully, but these errors were encountered: