Skip to content

Commit 075d8ee

Browse files
Closes #4535
1 parent ccbf396 commit 075d8ee

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
@@ -405,7 +405,13 @@ public function generateClassFromWsdl(string $wsdlFile, string $className, array
405405
);
406406

407407
foreach (\range(0, \count($args) - 1) as $i) {
408-
$args[$i] = \substr($args[$i], \strpos($args[$i], '$'));
408+
$parameterStart = \strpos($args[$i], '$');
409+
410+
if (!$parameterStart) {
411+
continue;
412+
}
413+
414+
$args[$i] = \substr($args[$i], $parameterStart);
409415
}
410416

411417
$methodTemplate->setVar(

0 commit comments

Comments
 (0)