1
0
mirror of synced 2025-01-18 22:41:43 +03:00

[2.0] Add missing doc-block comments to EntityRepository instance variables.

This commit is contained in:
beberlei 2010-01-16 22:39:54 +00:00
parent b521b49402
commit 0cdb799545

View File

@ -36,8 +36,19 @@ namespace Doctrine\ORM;
*/
class EntityRepository
{
/**
* @var string
*/
protected $_entityName;
/**
* @var EntityManager
*/
protected $_em;
/**
* @var Doctrine\ORM\Mapping\ClassMetadata
*/
protected $_class;
/**