Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
league
/
oauth2-server
/
src
/
EventEmitting
/
File Content:
AbstractEvent.php
<?php declare (strict_types=1); namespace PleskGrafana\League\OAuth2\Server\EventEmitting; use PleskGrafana\League\Event\HasEventName; use Psr\EventDispatcher\StoppableEventInterface; class AbstractEvent implements StoppableEventInterface, HasEventName { private bool $propagationStopped = \false; public function __construct(private string $name) { } public function eventName() : string { return $this->name; } /** * Backwards compatibility method * * @deprecated use eventName instead */ public function getName() : string { return $this->name; } public function isPropagationStopped() : bool { return $this->propagationStopped; } public function stopPropagation() : self { $this->propagationStopped = \true; return $this; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
AbstractEvent.php
860 bytes
0644
EmitterAwareInterface.php
240 bytes
0644
EmitterAwarePolyfill.php
726 bytes
0644
EventEmitter.php
550 bytes
0644
N4ST4R_ID | Naxtarrr