Skip to content

Commit d768afa

Browse files
committed
Merge branch '5.3' into 5.4
* 5.3: Cast ini_get to an integer to match expected type Add no-interaction for SYMFONY_PHPUNIT_REMOVE Add no-interaction for SYMFONY_PHPUNIT_REQUIRE on prophecy Remove indices in messenger table on MySQL to prevent deadlocks while removing messages when running multiple consumers
2 parents 2ae854f + 2a1ff6e commit d768afa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/simple-phpunit.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,10 +224,10 @@
224224
@copy("$PHPUNIT_VERSION_DIR/phpunit.xsd", 'phpunit.xsd');
225225
chdir("$PHPUNIT_VERSION_DIR");
226226
if ($SYMFONY_PHPUNIT_REMOVE) {
227-
$passthruOrFail("$COMPOSER remove --no-update ".$SYMFONY_PHPUNIT_REMOVE);
227+
$passthruOrFail("$COMPOSER remove --no-update --no-interaction ".$SYMFONY_PHPUNIT_REMOVE);
228228
}
229229
if ($SYMFONY_PHPUNIT_REQUIRE) {
230-
$passthruOrFail("$COMPOSER require --no-update ".$SYMFONY_PHPUNIT_REQUIRE);
230+
$passthruOrFail("$COMPOSER require --no-update --no-interaction ".$SYMFONY_PHPUNIT_REQUIRE);
231231
}
232232
if (5.1 <= $PHPUNIT_VERSION && $PHPUNIT_VERSION < 5.4) {
233233
$passthruOrFail("$COMPOSER require --no-update phpunit/phpunit-mock-objects \"~3.1.0\"");

0 commit comments

Comments
 (0)