public function PHPUnit_Framework_MockObject_Stub_ReturnSelf::invoke

Fakes the processing of the invocation $invocation by returning a specific value.

Parameters

PHPUnit_Framework_MockObject_Invocation $invocation: The invocation which was mocked and matched by the current method and argument matchers.

Return value

mixed

Overrides PHPUnit_Framework_MockObject_Stub::invoke

File

drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Stub/ReturnSelf.php, line 60

Class

PHPUnit_Framework_MockObject_Stub_ReturnSelf
Stubs a method by returning the current object.

Code

public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) {
  if (!$invocation instanceof PHPUnit_Framework_MockObject_Invocation_Object) {
    throw new PHPUnit_Framework_Exception('The current object can only be returned when mocking an ' . 'object, not a static class.');
  }
  return $invocation->object;
}