1
0
mirror of synced 2024-12-12 22:36:02 +03:00

[2.0] Add missing Docblock comments in AbstractCollectionPersister

This commit is contained in:
beberlei 2010-02-07 13:23:20 +00:00
parent 005d3b432b
commit 98a77d9387

View File

@ -32,8 +32,21 @@ use Doctrine\ORM\EntityManager,
*/
abstract class AbstractCollectionPersister
{
/**
*
* @var EntityManager
*/
protected $_em;
/**
* @var \Doctrine\DBAL\Connection
*/
protected $_conn;
/**
*
* @var \Doctrine\ORM\UnitOfWork
*/
protected $_uow;
/**