1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +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 class EntityRepository
{ {
/**
* @var string
*/
protected $_entityName; protected $_entityName;
/**
* @var EntityManager
*/
protected $_em; protected $_em;
/**
* @var Doctrine\ORM\Mapping\ClassMetadata
*/
protected $_class; protected $_class;
/** /**