Created
March 3, 2011 15:39
-
-
Save jmather/852953 to your computer and use it in GitHub Desktop.
How to enable identifier quoting with Doctrine in symfony
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
<?php | |
class ProjectConfiguration extends sfProjectConfiguration | |
{ | |
// ... | |
public function configureDoctrine(Doctrine_Manager $manager) | |
{ | |
$manager->setAttribute(Doctrine_Core::ATTR_QUOTE_IDENTIFIER, true); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment