File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes of the PHPUnit 6.4 release series are documented in this file using the [ Keep a CHANGELOG] ( http://keepachangelog.com/ ) principles.
4
4
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
+
5
11
## [ 6.4.3] - 2017-10-16
6
12
7
13
### Fixed
@@ -44,6 +50,7 @@ All notable changes of the PHPUnit 6.4 release series are documented in this fil
44
50
45
51
* Fixed [ #2750 ] ( https://github.com/sebastianbergmann/phpunit/issues/2750 ) : Useless call to ` array_map() `
46
52
53
+ [ 6.4.4 ] : https://github.com/sebastianbergmann/phpunit/compare/6.4.3...6.4.4
47
54
[ 6.4.3 ] : https://github.com/sebastianbergmann/phpunit/compare/6.4.2...6.4.3
48
55
[ 6.4.2 ] : https://github.com/sebastianbergmann/phpunit/compare/6.4.1...6.4.2
49
56
[ 6.4.1 ] : https://github.com/sebastianbergmann/phpunit/compare/6.4.0...6.4.1
Original file line number Diff line number Diff line change @@ -629,7 +629,7 @@ public function expectExceptionMessageRegExp($messageRegExp)
629
629
* Information for expected exception class, expected exception message, and
630
630
* expected exception code are retrieved from a given Exception object.
631
631
*/
632
- public function expectExceptionObject (Exception $ exception )
632
+ public function expectExceptionObject (\ Exception $ exception )
633
633
{
634
634
$ this ->expectException (\get_class ($ exception ));
635
635
$ this ->expectExceptionMessage ($ exception ->getMessage ());
You can’t perform that action at this time.
0 commit comments