Skip to content

Commit 85997d9

Browse files
Merge branch '6.4'
2 parents ad14374 + 6366904 commit 85997d9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ChangeLog-6.4.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [6.4.4] - 2017-MM-DD
6+
7+
### Fixed
8+
9+
* Fixed [#2814](https://github.com/sebastianbergmann/phpunit/pull/2814): Incorrect signature of `expectExceptionObject()`
10+
511
## [6.4.3] - 2017-10-16
612

713
### Fixed
@@ -44,6 +50,7 @@ All notable changes of the PHPUnit 6.4 release series are documented in this fil
4450

4551
* Fixed [#2750](https://github.com/sebastianbergmann/phpunit/issues/2750): Useless call to `array_map()`
4652

53+
[6.4.4]: https://github.com/sebastianbergmann/phpunit/compare/6.4.3...6.4.4
4754
[6.4.3]: https://github.com/sebastianbergmann/phpunit/compare/6.4.2...6.4.3
4855
[6.4.2]: https://github.com/sebastianbergmann/phpunit/compare/6.4.1...6.4.2
4956
[6.4.1]: https://github.com/sebastianbergmann/phpunit/compare/6.4.0...6.4.1

src/Framework/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ public function expectExceptionMessageRegExp($messageRegExp)
629629
* Information for expected exception class, expected exception message, and
630630
* expected exception code are retrieved from a given Exception object.
631631
*/
632-
public function expectExceptionObject(Exception $exception)
632+
public function expectExceptionObject(\Exception $exception)
633633
{
634634
$this->expectException(\get_class($exception));
635635
$this->expectExceptionMessage($exception->getMessage());

0 commit comments

Comments
 (0)