Last active
December 23, 2015 04:59
-
-
Save dmregister/6583514 to your computer and use it in GitHub Desktop.
This is in my Application module onBootstrap. I downloaded the library with composer.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return array( | |
| doctrine => array( | |
| ... | |
| 'configuration' => array( | |
| 'orm_default' => array( | |
| 'string_functions' => array( | |
| 'acos' => 'DoctrineExtensions\Query\Mysql\Acos', | |
| 'cos' => 'DoctrineExtensions\Query\Mysql\Cos', | |
| 'radians' => 'DoctrineExtensions\Query\Mysql\Radians', | |
| 'sin' => 'DoctrineExtensions\Query\Mysql\Sin' | |
| ) | |
| ) | |
| ) | |
| ) | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment