Skip to content

Commit be0d85a

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

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 array_values;
@@ -206,14 +205,6 @@ private function buildCommand(Job $job, ?string $file): array
206205

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

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

0 commit comments

Comments
 (0)