1
0
mirror of synced 2025-01-19 06:51:40 +03:00

Merge pull request #242 from FabioBatSilva/patch-1

[UnderscoreNamingStrategy] fix docblock
This commit is contained in:
Benjamin Eberlei 2011-12-27 23:46:36 -08:00
commit 3cbb3eab18

View File

@ -21,7 +21,8 @@
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
* @link www.doctrine-project.org
@ -31,7 +32,7 @@ namespace Doctrine\ORM\Mapping;
class UnderscoreNamingStrategy implements NamingStrategy
{
/**
* @var string
* @var integer
*/
private $case;