![]() 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/jms/serializer/src/EventDispatcher/ |
<?php declare(strict_types=1); namespace JMS\Serializer\EventDispatcher; use JMS\Serializer\Context; use JMS\Serializer\VisitorInterface; class Event { /** * @var bool Whether no further event listeners should be triggered */ private $propagationStopped = false; /** * @var array */ protected $type; /** * @var Context */ private $context; public function __construct(Context $context, array $type) { $this->context = $context; $this->type = $type; } public function getVisitor(): VisitorInterface { return $this->context->getVisitor(); } public function getContext(): Context { return $this->context; } public function getType(): array { return $this->type; } /** * Returns whether further event listeners should be triggered. * * @see Event::stopPropagation() * * @return bool Whether propagation was already stopped for this event */ public function isPropagationStopped(): bool { return $this->propagationStopped; } /** * Stops the propagation of the event to further event listeners. * * If multiple event listeners are connected to the same event, no * further event listener will be triggered once any trigger calls * stopPropagation(). */ public function stopPropagation(): void { $this->propagationStopped = true; } }