[ Th3_Err0r Bypassed ]




Upload:

Command:

liwaavux@216.73.217.154: ~ $
<?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 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 ExecutionFinished implements Event
{
    private readonly Telemetry\Info $telemetryInfo;

    public function __construct(Telemetry\Info $telemetryInfo)
    {
        $this->telemetryInfo = $telemetryInfo;
    }

    public function telemetryInfo(): Telemetry\Info
    {
        return $this->telemetryInfo;
    }

    public function asString(): string
    {
        return 'Test Runner Execution Finished';
    }
}

Filemanager

Name Type Size Permission Actions
BootstrapFinished.php File 1.14 KB 0644
BootstrapFinishedSubscriber.php File 555 B 0644
Configured.php File 1.12 KB 0644
ConfiguredSubscriber.php File 541 B 0644
DeprecationTriggered.php File 1.15 KB 0644
DeprecationTriggeredSubscriber.php File 561 B 0644
EventFacadeSealed.php File 899 B 0644
EventFacadeSealedSubscriber.php File 555 B 0644
ExecutionAborted.php File 908 B 0644
ExecutionAbortedSubscriber.php File 553 B 0644
ExecutionFinished.php File 910 B 0644
ExecutionFinishedSubscriber.php File 555 B 0644
ExecutionStarted.php File 1.27 KB 0644
ExecutionStartedSubscriber.php File 553 B 0644
ExtensionBootstrapped.php File 1.66 KB 0644
ExtensionBootstrappedSubscriber.php File 563 B 0644
ExtensionLoadedFromPhar.php File 1.51 KB 0644
ExtensionLoadedFromPharSubscriber.php File 567 B 0644
Finished.php File 891 B 0644
FinishedSubscriber.php File 537 B 0644
GarbageCollectionDisabled.php File 927 B 0644
GarbageCollectionDisabledSubscriber.php File 571 B 0644
GarbageCollectionEnabled.php File 925 B 0644
GarbageCollectionEnabledSubscriber.php File 569 B 0644
GarbageCollectionTriggered.php File 929 B 0644
GarbageCollectionTriggeredSubscriber.php File 573 B 0644
Started.php File 889 B 0644
StartedSubscriber.php File 535 B 0644
WarningTriggered.php File 1.15 KB 0644
WarningTriggeredSubscriber.php File 553 B 0644