Skip to content

Commit

Permalink
Closes #4535
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Dec 3, 2020
1 parent ccbf396 commit 075d8ee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
7 changes: 7 additions & 0 deletions ChangeLog-8.5.md
Expand Up @@ -2,6 +2,12 @@

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

## [8.5.14] - 2020-MM-DD

### Fixed

* [#4535](https://github.com/sebastianbergmann/phpunit/issues/4535): `getMockFromWsdl()` does not handle methods that do not have parameters correctly

## [8.5.13] - 2020-12-01

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

[8.5.14]: https://github.com/sebastianbergmann/phpunit/compare/8.5.13...8.5
[8.5.13]: https://github.com/sebastianbergmann/phpunit/compare/8.5.12...8.5.13
[8.5.12]: https://github.com/sebastianbergmann/phpunit/compare/8.5.11...8.5.12
[8.5.11]: https://github.com/sebastianbergmann/phpunit/compare/8.5.10...8.5.11
Expand Down
8 changes: 7 additions & 1 deletion src/Framework/MockObject/Generator.php
Expand Up @@ -405,7 +405,13 @@ public function generateClassFromWsdl(string $wsdlFile, string $className, array
);

foreach (\range(0, \count($args) - 1) as $i) {
$args[$i] = \substr($args[$i], \strpos($args[$i], '$'));
$parameterStart = \strpos($args[$i], '$');

if (!$parameterStart) {
continue;
}

$args[$i] = \substr($args[$i], $parameterStart);
}

$methodTemplate->setVar(
Expand Down

0 comments on commit 075d8ee

Please sign in to comment.