diff --git a/ChangeLog-5.2.md b/ChangeLog-5.2.md index 6fe5efb2bbb..94943a9b071 100644 --- a/ChangeLog-5.2.md +++ b/ChangeLog-5.2.md @@ -2,6 +2,12 @@ All notable changes of the PHPUnit 5.2 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles. +## [5.2.11] - 2016-MM-DD + +### Fixed + +* Fixed [#2094](https://github.com/sebastianbergmann/phpunit/issues/2094): Missing argument for `PHPUnit_TextUI_TestRunner::run()` + ## [5.2.10] - 2016-03-03 ### Fixed @@ -87,6 +93,7 @@ All notable changes of the PHPUnit 5.2 release series are documented in this fil * The `mapTestClassNameToCoveredClassName` configuration setting has been removed +[5.2.11]: https://github.com/sebastianbergmann/phpunit/compare/5.2.10...5.2.11 [5.2.10]: https://github.com/sebastianbergmann/phpunit/compare/5.2.9...5.2.10 [5.2.9]: https://github.com/sebastianbergmann/phpunit/compare/5.2.8...5.2.9 [5.2.8]: https://github.com/sebastianbergmann/phpunit/compare/5.2.7...5.2.8 diff --git a/src/TextUI/TestRunner.php b/src/TextUI/TestRunner.php index 74bfb4cc381..b3ced84b1fb 100644 --- a/src/TextUI/TestRunner.php +++ b/src/TextUI/TestRunner.php @@ -145,7 +145,7 @@ private function processSuiteFilters(PHPUnit_Framework_TestSuite $suite, array $ * * @return PHPUnit_Framework_TestResult */ - public function doRun(PHPUnit_Framework_Test $suite, array $arguments = [], $exit) + public function doRun(PHPUnit_Framework_Test $suite, array $arguments = [], $exit = true) { if (isset($arguments['configuration'])) { $GLOBALS['__PHPUNIT_CONFIGURATION_FILE'] = $arguments['configuration'];