Thanks to visit codestin.com Credit goes to github.com
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 1bb796d commit 80298a9Copy full SHA for 80298a9
src/Symfony/Bridge/PhpUnit/bin/simple-phpunit
@@ -66,7 +66,10 @@ if (1 === count($phpUnitConfigFiles)) {
66
67
if (count($runningProcs)) {
68
$exit = runProcs($runningProcs);
69
-} elseif (!isset($argv[1]) || 'install' !== $argv[1] || file_exists('install')) {
+} elseif (isset($argv[1]) && 'install' === $argv[1] || file_exists('install')) {
70
+ // Only install phpunit
71
+ getPhpUnit($phpUnitVersion, $phpUnitConfigFile);
72
+} else {
73
if (!class_exists('SymfonyBlacklistSimplePhpunit', false)) {
74
class SymfonyBlacklistSimplePhpunit {}
75
}
0 commit comments