/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Event/Events/TestRunner
NameSizeModeActions
BootstrapFinished.php11690644editdlrm
BootstrapFinishedSubscriber.php5550644editdlrm
Configured.php11490644editdlrm
ConfiguredSubscriber.php5410644editdlrm
DeprecationTriggered.php11810644editdlrm
DeprecationTriggeredSubscriber.php5610644editdlrm
EventFacadeSealed.php8990644editdlrm
EventFacadeSealedSubscriber.php5550644editdlrm
ExecutionAborted.php9080644editdlrm
ExecutionAbortedSubscriber.php5530644editdlrm
ExecutionFinished.php9100644editdlrm
ExecutionFinishedSubscriber.php5550644editdlrm
ExecutionStarted.php13050644editdlrm
ExecutionStartedSubscriber.php5530644editdlrm
ExtensionBootstrapped.php17010644editdlrm
ExtensionBootstrappedSubscriber.php5630644editdlrm
ExtensionLoadedFromPhar.php15510644editdlrm
ExtensionLoadedFromPharSubscriber.php5670644editdlrm
Finished.php8910644editdlrm
FinishedSubscriber.php5370644editdlrm
GarbageCollectionDisabled.php9270644editdlrm
GarbageCollectionDisabledSubscriber.php5710644editdlrm
GarbageCollectionEnabled.php9250644editdlrm
GarbageCollectionEnabledSubscriber.php5690644editdlrm
GarbageCollectionTriggered.php9290644editdlrm
GarbageCollectionTriggeredSubscriber.php5730644editdlrm
Started.php8890644editdlrm
StartedSubscriber.php5350644editdlrm
WarningTriggered.php11730644editdlrm
WarningTriggeredSubscriber.php5530644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Event/Events/TestRunner/WarningTriggered.php (1173B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Event\TestRunner; use function sprintf; use PHPUnit\Event\Event; use PHPUnit\Event\Telemetry; /** * @psalm-immutable * * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ final class WarningTriggered implements Event { private readonly Telemetry\Info $telemetryInfo; private readonly string $message; public function __construct(Telemetry\Info $telemetryInfo, string $message) { $this->telemetryInfo = $telemetryInfo; $this->message = $message; } public function telemetryInfo(): Telemetry\Info { return $this->telemetryInfo; } public function message(): string { return $this->message; } public function asString(): string { return sprintf( 'Test Runner Triggered Warning (%s)', $this->message, ); } }