Skip to content

Commit

Permalink
Merge branch '8.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jun 15, 2019
2 parents 878092b + 24b6cfc commit b4bb9c5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
7 changes: 7 additions & 0 deletions ChangeLog-8.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes of the PHPUnit 8.2 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [8.2.2] - 2019-06-15

### Changed

* Scoped PHAR built with newer version of PHP-Scoper

## [8.2.1] - 2019-06-07

### Fixed
Expand All @@ -25,6 +31,7 @@ All notable changes of the PHPUnit 8.2 release series are documented in this fil

* Fixed [#3602](https://github.com/sebastianbergmann/phpunit/issues/3602): PHPUnit silently ignores the return value on a `void` method of test double

[8.2.2]: https://github.com/sebastianbergmann/phpunit/compare/8.2.1...8.2.2
[8.2.1]: https://github.com/sebastianbergmann/phpunit/compare/8.2.0...8.2.1
[8.2.0]: https://github.com/sebastianbergmann/phpunit/compare/8.1.6...8.2.0

18 changes: 8 additions & 10 deletions build/scoper.inc.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php
declare(strict_types=1);
<?php declare(strict_types=1);
/*
* This file is part of PHPUnit.
*
Expand All @@ -8,14 +7,13 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
$whitelistClasses = [
'PHPUnit\*',
'SebastianBergmann\CodeCoverage\*',
'PharIo\*',
'PHP_Token*',
'Prophecy\*',
];

return [
'whitelist' => $whitelistClasses,
'whitelist' => [
'PHPUnit\*',
'SebastianBergmann\CodeCoverage\*',
'PharIo\*',
'PHP_Token*',
'Prophecy\*',
],
];
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"myclabs/deep-copy": "^1.9.1",
"phar-io/manifest": "^1.0.3",
"phar-io/version": "^2.0.1",
"phpspec/prophecy": "^1.8.0",
"phpspec/prophecy": "^1.8.1",
"phpunit/php-code-coverage": "^7.0.5",
"phpunit/php-file-iterator": "^2.0.2",
"phpunit/php-text-template": "^1.2.1",
Expand Down

0 comments on commit b4bb9c5

Please sign in to comment.