[345] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
---|
| 4 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
---|
| 5 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
---|
| 6 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
---|
| 7 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
---|
| 8 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
---|
| 9 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
---|
| 10 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
---|
| 11 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
---|
| 12 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
---|
| 13 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 14 | * |
---|
| 15 | * This software consists of voluntary contributions made by many individuals |
---|
| 16 | * and is licensed under the LGPL. For more information, see |
---|
| 17 | * <http://www.doctrine-project.org>. |
---|
| 18 | */ |
---|
| 19 | |
---|
| 20 | namespace Doctrine\ORM\Event; |
---|
| 21 | |
---|
| 22 | use Doctrine\Common\EventArgs; |
---|
| 23 | use Doctrine\ORM\EntityManager; |
---|
| 24 | |
---|
| 25 | /** |
---|
| 26 | * Lifecycle Events are triggered by the UnitOfWork during lifecycle transitions |
---|
| 27 | * of entities. |
---|
| 28 | * |
---|
| 29 | * @link www.doctrine-project.org |
---|
| 30 | * @since 2.0 |
---|
| 31 | * @author Roman Borschel <roman@code-factory.de> |
---|
| 32 | * @author Benjamin Eberlei <kontakt@beberlei.de> |
---|
| 33 | */ |
---|
| 34 | class LifecycleEventArgs extends EventArgs |
---|
| 35 | { |
---|
| 36 | /** |
---|
| 37 | * @var \Doctrine\ORM\EntityManager |
---|
| 38 | */ |
---|
| 39 | private $em; |
---|
| 40 | |
---|
| 41 | /** |
---|
| 42 | * @var object |
---|
| 43 | */ |
---|
| 44 | private $entity; |
---|
| 45 | |
---|
| 46 | /** |
---|
| 47 | * Constructor |
---|
| 48 | * |
---|
| 49 | * @param object $entity |
---|
| 50 | * @param \Doctrine\ORM\EntityManager $em |
---|
| 51 | */ |
---|
| 52 | public function __construct($entity, EntityManager $em) |
---|
| 53 | { |
---|
| 54 | $this->entity = $entity; |
---|
| 55 | $this->em = $em; |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | /** |
---|
| 59 | * Retireve associated Entity. |
---|
| 60 | * |
---|
| 61 | * @return object |
---|
| 62 | */ |
---|
| 63 | public function getEntity() |
---|
| 64 | { |
---|
| 65 | return $this->entity; |
---|
| 66 | } |
---|
| 67 | |
---|
| 68 | /** |
---|
| 69 | * Retrieve associated EntityManager. |
---|
| 70 | * |
---|
| 71 | * @return \Doctrine\ORM\EntityManager |
---|
| 72 | */ |
---|
| 73 | public function getEntityManager() |
---|
| 74 | { |
---|
| 75 | return $this->em; |
---|
| 76 | } |
---|
| 77 | } |
---|