class PHPUnit_Framework_MockObject_Stub_Return

Stubs a method by returning a user-defined value.

@package PHPUnit_MockObject @author Sebastian Bergmann <sb@sebastian-bergmann.de> @copyright 2010-2013 Sebastian Bergmann <sb@sebastian-bergmann.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @version Release: @package_version@ @link http://github.com/sebastianbergmann/phpunit-mock-objects @since Class available since Release 1.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_MockObject_Stub_Return

File

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

View source
class PHPUnit_Framework_MockObject_Stub_Return implements PHPUnit_Framework_MockObject_Stub {
  protected $value;
  public function __construct($value) {
    $this->value = $value;
  }
  public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) {
    return $this->value;
  }
  public function toString() {
    return sprintf('return user-specified value %s', PHPUnit_Util_Type::toString($this->value));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Framework_MockObject_Stub_Return::$value protected property
PHPUnit_Framework_MockObject_Stub_Return::invoke public function Fakes the processing of the invocation $invocation by returning a specific value. Overrides PHPUnit_Framework_MockObject_Stub::invoke 1
PHPUnit_Framework_MockObject_Stub_Return::toString public function Returns a string representation of the object. Overrides PHPUnit_Framework_SelfDescribing::toString 1
PHPUnit_Framework_MockObject_Stub_Return::__construct public function 1