Skip to content

Commit 24fb87d

Browse files
Merge branch '10.5' into 11.5
* 10.5: Remove code that was needed back when phpunit/php-code-coverage supported PHPDBG as a provider of code coverage data
2 parents 0ec030d + 55d9e26 commit 24fb87d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/Util/PHP/DefaultJobRunner.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
namespace PHPUnit\Util\PHP;
1111

1212
use const PHP_BINARY;
13-
use const PHP_SAPI;
1413
use function array_keys;
1514
use function array_merge;
1615
use function assert;
@@ -205,14 +204,6 @@ private function buildCommand(Job $job, ?string $file): array
205204

206205
$command = array_merge($command, $this->settingsToParameters($phpSettings));
207206

208-
if (PHP_SAPI === 'phpdbg') {
209-
$command[] = '-qrr';
210-
211-
if ($file === null) {
212-
$command[] = 's=';
213-
}
214-
}
215-
216207
if ($file !== null) {
217208
$command[] = '-f';
218209
$command[] = $file;

0 commit comments

Comments
 (0)