2008-05-06 17:41:22 +04:00
|
|
|
<?php
|
2008-02-11 20:08:22 +03: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
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
2009-02-07 20:02:13 +03:00
|
|
|
* <http://www.doctrine-project.org>.
|
2008-02-11 20:08:22 +03:00
|
|
|
*/
|
2008-02-04 00:29:57 +03:00
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Mapping;
|
2008-05-30 16:09:24 +04:00
|
|
|
|
2010-03-29 17:20:41 +04:00
|
|
|
use ReflectionClass, ReflectionProperty;
|
2011-12-19 21:03:53 +04:00
|
|
|
use Doctrine\Common\Persistence\Mapping\ClassMetadata AS IClassMetadata;
|
2010-03-29 17:20:41 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-07-30 19:16:02 +04:00
|
|
|
* A <tt>ClassMetadata</tt> instance holds all the object-relational mapping metadata
|
|
|
|
* of an entity and it's associations.
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2009-07-25 20:52:19 +04:00
|
|
|
* Once populated, ClassMetadata instances are usually cached in a serialized form.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-05-14 14:03:09 +04:00
|
|
|
* <b>IMPORTANT NOTE:</b>
|
|
|
|
*
|
|
|
|
* The fields of this class are only public for 2 reasons:
|
|
|
|
* 1) To allow fast READ access.
|
|
|
|
* 2) To drastically reduce the size of a serialized instance (private/protected members
|
|
|
|
* get the whole class name, namespace inclusive, prepended to every property in
|
|
|
|
* the serialized representation).
|
|
|
|
*
|
2008-02-24 23:31:49 +03:00
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-10-05 09:42:30 +04:00
|
|
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
2008-03-26 14:10:45 +03:00
|
|
|
* @since 2.0
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2011-12-19 21:03:53 +04:00
|
|
|
class ClassMetadata extends ClassMetadataInfo implements IClassMetadata
|
2008-05-06 17:41:22 +04:00
|
|
|
{
|
2009-01-05 23:18:56 +03:00
|
|
|
/**
|
|
|
|
* The ReflectionProperty instances of the mapped class.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-09-29 19:54:16 +04:00
|
|
|
public $reflFields = array();
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2010-02-10 13:47:42 +03:00
|
|
|
/**
|
|
|
|
* The prototype from which new instances of the mapped class are created.
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2010-02-10 13:47:42 +03:00
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
private $_prototype;
|
2009-02-17 13:54:18 +03:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-02-04 19:35:36 +03:00
|
|
|
* Initializes a new ClassMetadata instance that will hold the object-relational mapping
|
|
|
|
* metadata of the class with the given name.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-07-18 15:41:37 +04:00
|
|
|
* @param string $entityName The name of the entity class the new instance is used for.
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function __construct($entityName)
|
2008-05-06 17:41:22 +04:00
|
|
|
{
|
2010-04-14 19:07:08 +04:00
|
|
|
$this->reflClass = new ReflectionClass($entityName);
|
2009-07-28 20:36:24 +04:00
|
|
|
$this->namespace = $this->reflClass->getNamespaceName();
|
2010-03-29 17:20:41 +04:00
|
|
|
$this->table['name'] = $this->reflClass->getShortName();
|
2011-03-20 14:35:52 +03:00
|
|
|
parent::__construct($this->reflClass->getName()); // do not use $entityName, possible case-problems
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
2009-01-03 22:50:13 +03:00
|
|
|
/**
|
|
|
|
* Gets the ReflectionPropertys of the mapped class.
|
|
|
|
*
|
|
|
|
* @return array An array of ReflectionProperty instances.
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function getReflectionProperties()
|
|
|
|
{
|
2009-05-14 14:03:09 +04:00
|
|
|
return $this->reflFields;
|
2008-12-18 17:08:11 +03:00
|
|
|
}
|
|
|
|
|
2009-01-03 22:50:13 +03:00
|
|
|
/**
|
|
|
|
* Gets a ReflectionProperty for a specific field of the mapped class.
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return ReflectionProperty
|
|
|
|
*/
|
2008-12-18 17:08:11 +03:00
|
|
|
public function getReflectionProperty($name)
|
2008-05-17 16:22:24 +04:00
|
|
|
{
|
2009-05-14 14:03:09 +04:00
|
|
|
return $this->reflFields[$name];
|
2008-05-17 16:22:24 +04:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2009-01-05 20:25:56 +03:00
|
|
|
/**
|
2009-02-07 20:02:13 +03:00
|
|
|
* Gets the ReflectionProperty for the single identifier field.
|
2009-01-05 20:25:56 +03:00
|
|
|
*
|
2009-02-07 20:02:13 +03:00
|
|
|
* @return ReflectionProperty
|
2009-11-21 21:52:02 +03:00
|
|
|
* @throws BadMethodCallException If the class has a composite identifier.
|
2009-01-05 20:25:56 +03:00
|
|
|
*/
|
2009-01-03 22:50:13 +03:00
|
|
|
public function getSingleIdReflectionProperty()
|
|
|
|
{
|
2009-05-14 14:03:09 +04:00
|
|
|
if ($this->isIdentifierComposite) {
|
2009-11-21 21:52:02 +03:00
|
|
|
throw new \BadMethodCallException("Class " . $this->name . " has a composite identifier.");
|
2009-01-03 22:50:13 +03:00
|
|
|
}
|
2009-05-14 14:03:09 +04:00
|
|
|
return $this->reflFields[$this->identifier[0]];
|
2009-01-03 22:50:13 +03:00
|
|
|
}
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-10-05 08:11:29 +04:00
|
|
|
* Validates & completes the given field mapping.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param array $mapping The field mapping to validated & complete.
|
|
|
|
* @return array The validated and completed field mapping.
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2010-01-21 22:52:17 +03:00
|
|
|
* @throws MappingException
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2009-10-05 08:11:29 +04:00
|
|
|
protected function _validateAndCompleteFieldMapping(array &$mapping)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2009-10-05 08:11:29 +04:00
|
|
|
parent::_validateAndCompleteFieldMapping($mapping);
|
|
|
|
|
|
|
|
// Store ReflectionProperty of mapped field
|
2010-01-22 01:25:42 +03:00
|
|
|
$refProp = $this->reflClass->getProperty($mapping['fieldName']);
|
|
|
|
$refProp->setAccessible(true);
|
|
|
|
$this->reflFields[$mapping['fieldName']] = $refProp;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2009-04-09 22:12:48 +04:00
|
|
|
/**
|
2009-10-05 08:11:29 +04:00
|
|
|
* Extracts the identifier values of an entity of this class.
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* For composite identifiers, the identifier values are returned as an array
|
|
|
|
* with the same order as the field order in {@link identifier}.
|
2009-04-09 22:12:48 +04:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param object $entity
|
2010-02-20 21:27:05 +03:00
|
|
|
* @return array
|
2009-04-09 22:12:48 +04:00
|
|
|
*/
|
2009-10-05 08:11:29 +04:00
|
|
|
public function getIdentifierValues($entity)
|
2009-04-09 22:12:48 +04:00
|
|
|
{
|
2009-10-05 08:11:29 +04:00
|
|
|
if ($this->isIdentifierComposite) {
|
|
|
|
$id = array();
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
foreach ($this->identifier as $idField) {
|
|
|
|
$value = $this->reflFields[$idField]->getValue($entity);
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
if ($value !== null) {
|
2009-11-21 21:52:02 +03:00
|
|
|
$id[$idField] = $value;
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
|
|
|
}
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2009-10-05 08:11:29 +04:00
|
|
|
return $id;
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
2011-12-01 19:00:26 +04:00
|
|
|
|
|
|
|
$value = $this->reflFields[$this->identifier[0]]->getValue($entity);
|
|
|
|
|
|
|
|
if ($value !== null) {
|
|
|
|
return array($this->identifier[0] => $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return array();
|
2009-04-09 22:12:48 +04:00
|
|
|
}
|
|
|
|
|
2008-03-17 16:26:34 +03:00
|
|
|
/**
|
2009-10-05 08:11:29 +04:00
|
|
|
* Populates the entity identifier of an entity.
|
2008-03-17 16:26:34 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param object $entity
|
|
|
|
* @param mixed $id
|
|
|
|
* @todo Rename to assignIdentifier()
|
2008-03-17 16:26:34 +03:00
|
|
|
*/
|
2010-07-20 16:20:13 +04:00
|
|
|
public function setIdentifierValues($entity, array $id)
|
2008-02-28 18:30:55 +03:00
|
|
|
{
|
2010-07-20 16:20:13 +04:00
|
|
|
foreach ($id as $idField => $idValue) {
|
|
|
|
$this->reflFields[$idField]->setValue($entity, $idValue);
|
2009-10-05 08:11:29 +04:00
|
|
|
}
|
2008-02-28 18:30:55 +03:00
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2008-02-04 00:29:57 +03:00
|
|
|
/**
|
2009-10-05 08:11:29 +04:00
|
|
|
* Sets the specified field to the specified value on the given entity.
|
2008-02-04 00:29:57 +03:00
|
|
|
*
|
2009-10-05 08:11:29 +04:00
|
|
|
* @param object $entity
|
|
|
|
* @param string $field
|
|
|
|
* @param mixed $value
|
2008-02-04 00:29:57 +03:00
|
|
|
*/
|
2009-10-05 08:11:29 +04:00
|
|
|
public function setFieldValue($entity, $field, $value)
|
2008-02-04 00:29:57 +03:00
|
|
|
{
|
2009-10-05 08:11:29 +04:00
|
|
|
$this->reflFields[$field]->setValue($entity, $value);
|
2008-08-31 22:27:16 +04:00
|
|
|
}
|
2008-12-18 17:08:11 +03:00
|
|
|
|
2010-03-15 20:19:00 +03:00
|
|
|
/**
|
|
|
|
* Gets the specified field's value off the given entity.
|
|
|
|
*
|
|
|
|
* @param object $entity
|
|
|
|
* @param string $field
|
|
|
|
*/
|
|
|
|
public function getFieldValue($entity, $field)
|
|
|
|
{
|
|
|
|
return $this->reflFields[$field]->getValue($entity);
|
|
|
|
}
|
|
|
|
|
2008-08-31 22:27:16 +04:00
|
|
|
/**
|
|
|
|
* Stores the association mapping.
|
|
|
|
*
|
2009-02-04 19:35:36 +03:00
|
|
|
* @param AssociationMapping $assocMapping
|
2008-08-31 22:27:16 +04:00
|
|
|
*/
|
2010-08-09 15:13:21 +04:00
|
|
|
protected function _storeAssociationMapping(array $assocMapping)
|
2008-08-31 22:27:16 +04:00
|
|
|
{
|
2009-10-05 08:11:29 +04:00
|
|
|
parent::_storeAssociationMapping($assocMapping);
|
2009-01-12 16:34:41 +03:00
|
|
|
|
|
|
|
// Store ReflectionProperty of mapped field
|
2010-08-09 15:13:21 +04:00
|
|
|
$sourceFieldName = $assocMapping['fieldName'];
|
2010-04-13 22:09:11 +04:00
|
|
|
|
|
|
|
$refProp = $this->reflClass->getProperty($sourceFieldName);
|
|
|
|
$refProp->setAccessible(true);
|
|
|
|
$this->reflFields[$sourceFieldName] = $refProp;
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2010-03-15 20:19:00 +03:00
|
|
|
|
2009-03-30 23:43:05 +04:00
|
|
|
/**
|
|
|
|
* Creates a string representation of this instance.
|
|
|
|
*
|
|
|
|
* @return string The string representation of this instance.
|
2009-06-07 21:20:37 +04:00
|
|
|
* @todo Construct meaningful string representation.
|
2009-03-30 23:43:05 +04:00
|
|
|
*/
|
2008-02-04 00:29:57 +03:00
|
|
|
public function __toString()
|
|
|
|
{
|
2009-01-03 22:50:13 +03:00
|
|
|
return __CLASS__ . '@' . spl_object_hash($this);
|
2008-02-04 00:29:57 +03:00
|
|
|
}
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2009-08-11 14:51:38 +04:00
|
|
|
/**
|
|
|
|
* Determines which fields get serialized.
|
2010-04-19 00:47:03 +04:00
|
|
|
*
|
|
|
|
* It is only serialized what is necessary for best unserialization performance.
|
|
|
|
* That means any metadata properties that are not set or empty or simply have
|
|
|
|
* their default value are NOT serialized.
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2010-04-19 00:47:03 +04:00
|
|
|
* Parts that are also NOT serialized because they can not be properly unserialized:
|
2009-08-11 14:51:38 +04:00
|
|
|
* - reflClass (ReflectionClass)
|
|
|
|
* - reflFields (ReflectionProperty array)
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2009-08-11 14:51:38 +04:00
|
|
|
* @return array The names of all the fields that should be serialized.
|
|
|
|
*/
|
|
|
|
public function __sleep()
|
|
|
|
{
|
2010-04-19 00:47:03 +04:00
|
|
|
// This metadata is always serialized/cached.
|
|
|
|
$serialized = array(
|
|
|
|
'associationMappings',
|
2009-12-21 14:06:27 +03:00
|
|
|
'columnNames', //TODO: Not really needed. Can use fieldMappings[$fieldName]['columnName']
|
2010-04-19 00:47:03 +04:00
|
|
|
'fieldMappings',
|
|
|
|
'fieldNames',
|
2009-08-11 14:51:38 +04:00
|
|
|
'identifier',
|
2010-04-19 00:47:03 +04:00
|
|
|
'isIdentifierComposite', // TODO: REMOVE
|
2009-08-11 14:51:38 +04:00
|
|
|
'name',
|
2010-04-30 19:30:27 +04:00
|
|
|
'namespace', // TODO: REMOVE
|
2010-03-29 17:20:41 +04:00
|
|
|
'table',
|
2009-08-11 14:51:38 +04:00
|
|
|
'rootEntityName',
|
2010-04-19 00:47:03 +04:00
|
|
|
'idGenerator', //TODO: Does not really need to be serialized. Could be moved to runtime.
|
2009-08-11 14:51:38 +04:00
|
|
|
);
|
2010-04-19 00:47:03 +04:00
|
|
|
|
|
|
|
// The rest of the metadata is only serialized if necessary.
|
|
|
|
if ($this->changeTrackingPolicy != self::CHANGETRACKING_DEFERRED_IMPLICIT) {
|
|
|
|
$serialized[] = 'changeTrackingPolicy';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->customRepositoryClassName) {
|
|
|
|
$serialized[] = 'customRepositoryClassName';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->inheritanceType != self::INHERITANCE_TYPE_NONE) {
|
|
|
|
$serialized[] = 'inheritanceType';
|
|
|
|
$serialized[] = 'discriminatorColumn';
|
|
|
|
$serialized[] = 'discriminatorValue';
|
|
|
|
$serialized[] = 'discriminatorMap';
|
|
|
|
$serialized[] = 'parentClasses';
|
|
|
|
$serialized[] = 'subClasses';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->generatorType != self::GENERATOR_TYPE_NONE) {
|
|
|
|
$serialized[] = 'generatorType';
|
2010-06-07 15:10:15 +04:00
|
|
|
if ($this->generatorType == self::GENERATOR_TYPE_SEQUENCE) {
|
|
|
|
$serialized[] = 'sequenceGeneratorDefinition';
|
|
|
|
}
|
2010-04-19 00:47:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->isMappedSuperclass) {
|
|
|
|
$serialized[] = 'isMappedSuperclass';
|
|
|
|
}
|
|
|
|
|
2011-01-01 20:17:19 +03:00
|
|
|
if ($this->containsForeignIdentifier) {
|
|
|
|
$serialized[] = 'containsForeignIdentifier';
|
|
|
|
}
|
|
|
|
|
2010-04-19 00:47:03 +04:00
|
|
|
if ($this->isVersioned) {
|
|
|
|
$serialized[] = 'isVersioned';
|
|
|
|
$serialized[] = 'versionField';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->lifecycleCallbacks) {
|
|
|
|
$serialized[] = 'lifecycleCallbacks';
|
|
|
|
}
|
|
|
|
|
2011-03-14 07:04:50 +03:00
|
|
|
if ($this->namedQueries) {
|
|
|
|
$serialized[] = 'namedQueries';
|
|
|
|
}
|
|
|
|
|
2011-03-29 22:04:14 +04:00
|
|
|
if ($this->isReadOnly) {
|
|
|
|
$serialized[] = 'isReadOnly';
|
|
|
|
}
|
|
|
|
|
2010-04-19 00:47:03 +04:00
|
|
|
return $serialized;
|
2009-08-11 14:51:38 +04:00
|
|
|
}
|
2010-03-29 17:20:41 +04:00
|
|
|
|
2009-08-11 14:51:38 +04:00
|
|
|
/**
|
2009-10-24 01:47:25 +04:00
|
|
|
* Restores some state that can not be serialized/unserialized.
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2009-08-11 14:51:38 +04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __wakeup()
|
|
|
|
{
|
|
|
|
// Restore ReflectionClass and properties
|
2010-03-29 17:20:41 +04:00
|
|
|
$this->reflClass = new ReflectionClass($this->name);
|
2010-04-14 19:07:08 +04:00
|
|
|
|
2010-01-15 16:33:42 +03:00
|
|
|
foreach ($this->fieldMappings as $field => $mapping) {
|
2011-12-01 19:00:26 +04:00
|
|
|
$reflField = isset($mapping['declared'])
|
|
|
|
? new ReflectionProperty($mapping['declared'], $field)
|
|
|
|
: $this->reflClass->getProperty($field);
|
|
|
|
|
2010-01-22 01:25:42 +03:00
|
|
|
$reflField->setAccessible(true);
|
|
|
|
$this->reflFields[$field] = $reflField;
|
2009-08-11 14:51:38 +04:00
|
|
|
}
|
2010-03-29 17:20:41 +04:00
|
|
|
|
2009-08-11 14:51:38 +04:00
|
|
|
foreach ($this->associationMappings as $field => $mapping) {
|
2011-12-01 19:00:26 +04:00
|
|
|
$reflField = isset($mapping['declared'])
|
|
|
|
? new ReflectionProperty($mapping['declared'], $field)
|
|
|
|
: $this->reflClass->getProperty($field);
|
2010-02-10 13:47:42 +03:00
|
|
|
|
2010-01-22 01:25:42 +03:00
|
|
|
$reflField->setAccessible(true);
|
|
|
|
$this->reflFields[$field] = $reflField;
|
2009-08-11 14:51:38 +04:00
|
|
|
}
|
|
|
|
}
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2010-02-10 13:47:42 +03:00
|
|
|
/**
|
|
|
|
* Creates a new instance of the mapped class, without invoking the constructor.
|
2011-12-01 19:00:26 +04:00
|
|
|
*
|
2010-02-10 13:47:42 +03:00
|
|
|
* @return object
|
|
|
|
*/
|
|
|
|
public function newInstance()
|
|
|
|
{
|
|
|
|
if ($this->_prototype === null) {
|
|
|
|
$this->_prototype = unserialize(sprintf('O:%d:"%s":0:{}', strlen($this->name), $this->name));
|
|
|
|
}
|
2011-12-01 19:00:26 +04:00
|
|
|
|
2010-02-10 13:47:42 +03:00
|
|
|
return clone $this->_prototype;
|
|
|
|
}
|
2011-09-04 16:13:20 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $callback
|
|
|
|
* @param string $event
|
|
|
|
*/
|
|
|
|
public function addLifecycleCallback($callback, $event)
|
|
|
|
{
|
|
|
|
if ( !$this->reflClass->hasMethod($callback) ||
|
|
|
|
($this->reflClass->getMethod($callback)->getModifiers() & \ReflectionMethod::IS_PUBLIC) == 0) {
|
|
|
|
throw MappingException::lifecycleCallbackMethodNotFound($this->name, $callback);
|
|
|
|
}
|
2011-12-20 01:56:19 +04:00
|
|
|
|
2011-09-04 16:13:20 +04:00
|
|
|
return parent::addLifecycleCallback($callback, $event);
|
|
|
|
}
|
2009-07-20 16:05:19 +04:00
|
|
|
}
|