%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /www/loslex/test/vendor/laravel/framework/src/Illuminate/Testing/
Upload File :
Create Path :
Current File : /www/loslex/test/vendor/laravel/framework/src/Illuminate/Testing/ParallelRunner.php

<?php

namespace Illuminate\Testing;

use Illuminate\Testing\Concerns\RunsInParallel;

if (interface_exists(\ParaTest\RunnerInterface::class)) {
    class ParallelRunner implements \ParaTest\RunnerInterface
    {
        use RunsInParallel;

        /**
         * Runs the test suite.
         *
         * @return int
         */
        public function run(): int
        {
            return $this->execute();
        }
    }
} else {
    class ParallelRunner implements \ParaTest\Runners\PHPUnit\RunnerInterface
    {
        use RunsInParallel;

        /**
         * Runs the test suite.
         *
         * @return void
         */
        public function run(): void
        {
            $this->execute();
        }
    }
}

Zerion Mini Shell 1.0