![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/doctrine/orm/src/Mapping/Builder/ |
<?php declare(strict_types=1); namespace Doctrine\ORM\Mapping\Builder; use Doctrine\ORM\Events; use Doctrine\ORM\Mapping\ClassMetadata; use Doctrine\ORM\Mapping\MappingException; use function class_exists; use function get_class_methods; /** * Builder for entity listeners. */ class EntityListenerBuilder { /** @var array<string,bool> Hash-map to handle event names. */ private static $events = [ Events::preRemove => true, Events::postRemove => true, Events::prePersist => true, Events::postPersist => true, Events::preUpdate => true, Events::postUpdate => true, Events::postLoad => true, Events::preFlush => true, ]; /** * Lookup the entity class to find methods that match to event lifecycle names * * @param ClassMetadata $metadata The entity metadata. * @param string $className The listener class name. * * @return void * * @throws MappingException When the listener class not found. */ public static function bindEntityListener(ClassMetadata $metadata, $className) { $class = $metadata->fullyQualifiedClassName($className); if (! class_exists($class)) { throw MappingException::entityListenerClassNotFound($class, $className); } foreach (get_class_methods($class) as $method) { if (! isset(self::$events[$method])) { continue; } $metadata->addEntityListener($method, $class, $method); } } }