2009-07-15 20:18:40 +00:00
|
|
|
<?php
|
2011-10-28 12:49:01 -02:00
|
|
|
/*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
2012-05-26 14:37:00 +02:00
|
|
|
* and is licensed under the MIT license. For more information, see
|
2011-10-28 12:49:01 -02:00
|
|
|
* <http://www.doctrine-project.org>.
|
|
|
|
*/
|
2009-07-15 20:18:40 +00:00
|
|
|
|
|
|
|
namespace Doctrine\ORM\Event;
|
|
|
|
|
2012-12-05 14:26:22 +01:00
|
|
|
use Doctrine\Common\Persistence\Event\LoadClassMetadataEventArgs as BaseLoadClassMetadataEventArgs;
|
2015-05-05 13:52:08 -07:00
|
|
|
use Doctrine\ORM\Mapping\ClassMetadata;
|
|
|
|
use Doctrine\ORM\EntityManager;
|
2010-11-05 22:13:19 +01:00
|
|
|
|
2009-07-15 20:18:40 +00:00
|
|
|
/**
|
|
|
|
* Class that holds event arguments for a loadMetadata event.
|
|
|
|
*
|
|
|
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
2011-10-28 12:49:01 -02:00
|
|
|
* @since 2.0
|
2009-07-15 20:18:40 +00:00
|
|
|
*/
|
2012-12-05 14:26:22 +01:00
|
|
|
class LoadClassMetadataEventArgs extends BaseLoadClassMetadataEventArgs
|
2009-07-15 20:18:40 +00:00
|
|
|
{
|
2015-05-05 13:52:08 -07:00
|
|
|
/**
|
|
|
|
* @param ClassMetadata $classMetadata
|
|
|
|
* @param EntityManager $entityManager
|
|
|
|
*/
|
|
|
|
function __construct(ClassMetadata $classMetadata, EntityManager $entityManager)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
We use our own constructor here to enforce type-hinting requirements,
|
|
|
|
since both inputs are specialized subclasses compared to what the super-
|
|
|
|
class is willing to accept.
|
|
|
|
|
|
|
|
In particular, we want to have EntityManager rather than ObjectManager.
|
|
|
|
*/
|
|
|
|
parent::__construct($classMetadata, $entityManager);
|
|
|
|
}
|
|
|
|
|
2010-11-05 22:13:19 +01:00
|
|
|
/**
|
2012-12-05 14:26:22 +01:00
|
|
|
* Retrieve associated EntityManager.
|
2011-12-19 22:56:19 +01:00
|
|
|
*
|
2011-12-11 21:46:24 +00:00
|
|
|
* @return \Doctrine\ORM\EntityManager
|
2010-11-05 22:13:19 +01:00
|
|
|
*/
|
|
|
|
public function getEntityManager()
|
|
|
|
{
|
2015-05-05 13:52:08 -07:00
|
|
|
$em = $this->getObjectManager();
|
|
|
|
assert($em instanceof EntityManager);
|
|
|
|
return $em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves the associated ClassMetadata.
|
|
|
|
*
|
|
|
|
* @return \Doctrine\ORM\Mapping\ClassMetadata
|
|
|
|
*/
|
|
|
|
public function getClassMetadata()
|
|
|
|
{
|
|
|
|
return parent::getClassMetadata();
|
2009-07-15 20:18:40 +00:00
|
|
|
}
|
|
|
|
}
|