Skip to content

Commit 10b10af

Browse files
Merge branch '8.5' into 9.4
2 parents 6f47be0 + 075d8ee commit 10b10af

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

ChangeLog-8.5.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 8.5 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5+
## [8.5.14] - 2020-MM-DD
6+
7+
### Fixed
8+
9+
* [#4535](https://github.com/sebastianbergmann/phpunit/issues/4535): `getMockFromWsdl()` does not handle methods that do not have parameters correctly
10+
511
## [8.5.13] - 2020-12-01
612

713
### Fixed
@@ -116,6 +122,7 @@ All notable changes of the PHPUnit 8.5 release series are documented in this fil
116122
* [#3967](https://github.com/sebastianbergmann/phpunit/issues/3967): Cannot double interface that extends interface that extends `\Throwable`
117123
* [#3968](https://github.com/sebastianbergmann/phpunit/pull/3968): Test class run in a separate PHP process are passing when `exit` called inside
118124

125+
[8.5.14]: https://github.com/sebastianbergmann/phpunit/compare/8.5.13...8.5
119126
[8.5.13]: https://github.com/sebastianbergmann/phpunit/compare/8.5.12...8.5.13
120127
[8.5.12]: https://github.com/sebastianbergmann/phpunit/compare/8.5.11...8.5.12
121128
[8.5.11]: https://github.com/sebastianbergmann/phpunit/compare/8.5.10...8.5.11

src/Framework/MockObject/Generator.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,13 @@ public function generateClassFromWsdl(string $wsdlFile, string $className, array
413413
);
414414

415415
foreach (range(0, count($args) - 1) as $i) {
416-
$args[$i] = substr($args[$i], strpos($args[$i], '$'));
416+
$parameterStart = strpos($args[$i], '$');
417+
418+
if (!$parameterStart) {
419+
continue;
420+
}
421+
422+
$args[$i] = substr($args[$i], $parameterStart);
417423
}
418424

419425
$methodTemplate->setVar(

0 commit comments

Comments
 (0)