Skip to content

Commit

Permalink
Merge branch '8.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Sep 7, 2019
2 parents c2fa2fc + 3d7c49b commit f2d371f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/build export-ignore
/tools export-ignore
/.docker export-ignore
/build export-ignore
/tools export-ignore

*.php diff=php

1 change: 1 addition & 0 deletions ChangeLog-8.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes of the PHPUnit 8.3 release series are documented in this fil
* Fixed [#3745](https://github.com/sebastianbergmann/phpunit/issues/3745): Performance degradation with test doubles
* Fixed [#3801](https://github.com/sebastianbergmann/phpunit/issues/3801): Class constant as default parameter is undefined
* Fixed [#3807](https://github.com/sebastianbergmann/phpunit/pull/3807): Fixed message of exception raised by `MockBuilder::addMethods()`
* Fixed [#3834](https://github.com/sebastianbergmann/phpunit/issues/3834): Trailing slash breaks code coverage on Windows

## [8.3.4] - 2019-08-11

Expand Down
6 changes: 5 additions & 1 deletion src/Util/XdebugFilterScriptGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ private function getWhitelistItems(array $filterData): array
$path = \realpath($directory['path']);

if (\is_string($path)) {
$files[] = \sprintf('%s/', $path);
$files[] = \sprintf(
'%s%s',
$path,
\DIRECTORY_SEPARATOR
);
}
}
}
Expand Down

0 comments on commit f2d371f

Please sign in to comment.