Skip to content

Commit 55d9e26

Browse files
Remove code that was needed back when phpunit/php-code-coverage supported PHPDBG as a provider of code coverage data
1 parent 76b51fd commit 55d9e26

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/Util/PHP/AbstractPhpProcess.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;
@@ -183,14 +182,6 @@ public function getCommand(array $settings, ?string $file = null): array
183182

184183
$command = array_merge($command, $this->settingsToParameters($settings));
185184

186-
if (PHP_SAPI === 'phpdbg') {
187-
$command[] = '-qrr';
188-
189-
if (!$file) {
190-
$command[] = 's=';
191-
}
192-
}
193-
194185
if ($file) {
195186
$command[] = '-f';
196187
$command[] = $file;

0 commit comments

Comments
 (0)