1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/lib/Doctrine/ORM/Event/LifecycleEventArgs.php
2009-07-18 18:06:30 +00:00

19 lines
313 B
PHP

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