/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpunit
/
phpunit
/
src
/
Event
/
Events
/
TestRunner
/
/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Event/Events/TestRunner
mkdir
upload
Name
Size
Mode
Actions
BootstrapFinished.php
1169
0644
edit
dl
rm
BootstrapFinishedSubscriber.php
555
0644
edit
dl
rm
Configured.php
1149
0644
edit
dl
rm
ConfiguredSubscriber.php
541
0644
edit
dl
rm
DeprecationTriggered.php
1181
0644
edit
dl
rm
DeprecationTriggeredSubscriber.php
561
0644
edit
dl
rm
EventFacadeSealed.php
899
0644
edit
dl
rm
EventFacadeSealedSubscriber.php
555
0644
edit
dl
rm
ExecutionAborted.php
908
0644
edit
dl
rm
ExecutionAbortedSubscriber.php
553
0644
edit
dl
rm
ExecutionFinished.php
910
0644
edit
dl
rm
ExecutionFinishedSubscriber.php
555
0644
edit
dl
rm
ExecutionStarted.php
1305
0644
edit
dl
rm
ExecutionStartedSubscriber.php
553
0644
edit
dl
rm
ExtensionBootstrapped.php
1701
0644
edit
dl
rm
ExtensionBootstrappedSubscriber.php
563
0644
edit
dl
rm
ExtensionLoadedFromPhar.php
1551
0644
edit
dl
rm
ExtensionLoadedFromPharSubscriber.php
567
0644
edit
dl
rm
Finished.php
891
0644
edit
dl
rm
FinishedSubscriber.php
537
0644
edit
dl
rm
GarbageCollectionDisabled.php
927
0644
edit
dl
rm
GarbageCollectionDisabledSubscriber.php
571
0644
edit
dl
rm
GarbageCollectionEnabled.php
925
0644
edit
dl
rm
GarbageCollectionEnabledSubscriber.php
569
0644
edit
dl
rm
GarbageCollectionTriggered.php
929
0644
edit
dl
rm
GarbageCollectionTriggeredSubscriber.php
573
0644
edit
dl
rm
Started.php
889
0644
edit
dl
rm
StartedSubscriber.php
535
0644
edit
dl
rm
WarningTriggered.php
1173
0644
edit
dl
rm
WarningTriggeredSubscriber.php
553
0644
edit
dl
rm
Edit:
/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Event/Events/TestRunner/BootstrapFinished.php
(1169B)
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * 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 BootstrapFinished implements Event { private readonly Telemetry\Info $telemetryInfo; private readonly string $filename; public function __construct(Telemetry\Info $telemetryInfo, string $filename) { $this->telemetryInfo = $telemetryInfo; $this->filename = $filename; } public function telemetryInfo(): Telemetry\Info { return $this->telemetryInfo; } public function filename(): string { return $this->filename; } public function asString(): string { return sprintf( 'Bootstrap Finished (%s)', $this->filename, ); } }
Save
cmd:
run