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
On this page The config is:
doctrine: dbal: types: geometry: CrEOF\Spatial\DBAL\Types\GeometryType point: CrEOF\Spatial\DBAL\Types\Geometry\PointType polygon: CrEOF\Spatial\DBAL\Types\Geometry\PolygonType linestring: CrEOF\Spatial\DBAL\Types\Geometry\LineStringType orm: dql: numeric_functions: st_contains: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\STContains contains: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\Contains st_area: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\Area st_geomfromtext: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\GeomFromText st_intersects: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\STIntersects st_buffer: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\STBuffer point: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\Point
And should be:
doctrine: dbal: types: geometry: CrEOF\Spatial\DBAL\Types\GeometryType point: CrEOF\Spatial\DBAL\Types\Geometry\PointType polygon: CrEOF\Spatial\DBAL\Types\Geometry\PolygonType linestring: CrEOF\Spatial\DBAL\Types\Geometry\LineStringType orm: entity_managers: default: dql: numeric_functions: st_contains: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\STContains contains: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\Contains st_area: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\Area st_geomfromtext: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\GeomFromText st_intersects: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\STIntersects st_buffer: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\STBuffer point: CrEOF\Spatial\ORM\Query\AST\Functions\MySql\Point
Source: Doc Symfony
The text was updated successfully, but these errors were encountered:
This is not an error. Symfony manual clearly tells that this way is used often in documentation. See Shortened Configuration Syntax
When you are only using one entity manager, all config options available can be placed directly under doctrine.orm config level. This shortened version is commonly used in other documentation sections. Keep in mind that you can't use both syntaxes at the same time.
When you are only using one entity manager, all config options available can be placed directly under doctrine.orm config level.
This shortened version is commonly used in other documentation sections. Keep in mind that you can't use both syntaxes at the same time.
Sorry, something went wrong.
No branches or pull requests
On this page
The config is:
And should be:
Source: Doc Symfony
The text was updated successfully, but these errors were encountered: