We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee21897 commit e6aa593Copy full SHA for e6aa593
src/Framework/TestRunner.php
@@ -11,7 +11,6 @@
11
12
use const PHP_EOL;
13
use function assert;
14
-use function class_exists;
15
use function defined;
16
use function error_clear_last;
17
use function extension_loaded;
@@ -386,12 +385,6 @@ private function canTimeLimitBeEnforced(): bool
386
385
return $this->timeLimitCanBeEnforced;
387
}
388
389
- if (!class_exists(Invoker::class)) {
390
- $this->timeLimitCanBeEnforced = false;
391
-
392
- return $this->timeLimitCanBeEnforced;
393
- }
394
395
$this->timeLimitCanBeEnforced = (new Invoker)->canInvokeWithTimeout();
396
397
0 commit comments