[2.0] Add missing doc-block comments to EntityRepository instance variables.
This commit is contained in:
parent
b521b49402
commit
0cdb799545
1 changed files with 11 additions and 0 deletions
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue