You are here

public function PHPUnit_Framework_MockObject_MockBuilder::disableProxyingToOriginalMethods in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockBuilder.php \PHPUnit_Framework_MockObject_MockBuilder::disableProxyingToOriginalMethods()

Disables the invocation of the original methods.

@since Method available since Release 2.0.0

Return value

PHPUnit_Framework_MockObject_MockBuilder

File

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/MockBuilder.php, line 301

Class

PHPUnit_Framework_MockObject_MockBuilder
Implementation of the Builder pattern for Mock objects.

Code

public function disableProxyingToOriginalMethods() {
  $this->callOriginalMethods = false;
  $this->proxyTarget = null;
  return $this;
}