JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?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(); } } }