123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
-
-
- namespace Doctrine\ORM\Event;
-
-
- class LifecycleEventArgs extends \Doctrine\Common\EventArgs
- {
-
-
- private $_em;
-
-
-
- private $_entity;
-
- public function __construct($entity, $em)
- {
- $this->_entity = $entity;
- $this->_em = $em;
- }
-
- public function getEntity()
- {
- return $this->_entity;
- }
-
-
-
- public function getEntityManager()
- {
- return $this->_em;
- }
- }
|