Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ env:
- PHPUNIT_VERSION=~6.4.0
- PHPUNIT_VERSION=~6.5.0
- PHPUNIT_VERSION=~7.0.0
- PHPUNIT_VERSION=~7.1.0

php:
- 7.2
Expand All @@ -27,6 +28,8 @@ matrix:
exclude:
- php: 7
env: PHPUNIT_VERSION=dev-master
- php: 7
env: PHPUNIT_VERSION=~7.1.0
- php: 7
env: PHPUNIT_VERSION=~7.0.0
allow_failures:
Expand Down
10 changes: 10 additions & 0 deletions classes/MockObjectProxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,14 @@ public function __phpunit_hasMatchers()
// @codingStandardsIgnoreEnd
return $this->mockObject->__phpunit_hasMatchers();
}

/**
* @SuppressWarnings(PHPMD)
*/
// @codingStandardsIgnoreStart
public function __phpunit_setReturnValueGeneration(bool $returnValueGeneration)
{
// @codingStandardsIgnoreEnd
return $this->mockObject->__phpunit_setReturnValueGeneration($returnValueGeneration);
}
}