1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
This commit is contained in:
Fabio B. Silva 2011-12-27 09:53:09 -02:00
parent abb258c951
commit ff4ed93707

View file

@ -21,7 +21,8 @@
namespace Doctrine\ORM\Mapping; namespace Doctrine\ORM\Mapping;
/** /**
* The default NamingStrategy * Naming strategy implementing the underscore naming convention.
* Converts 'MyEntity' to 'my_entity' or 'MY_ENTITY'.
* *
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.doctrine-project.org * @link www.doctrine-project.org
@ -31,7 +32,7 @@ namespace Doctrine\ORM\Mapping;
class UnderscoreNamingStrategy implements NamingStrategy class UnderscoreNamingStrategy implements NamingStrategy
{ {
/** /**
* @var string * @var integer
*/ */
private $case; private $case;