You are here

class PHPUnit_Framework_MockObject_Stub_ReturnCallback in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnCallback.php \PHPUnit_Framework_MockObject_Stub_ReturnCallback

@since Class available since Release 1.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_MockObject_Stub_ReturnCallback

File

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/ReturnCallback.php, line 14

View source
class PHPUnit_Framework_MockObject_Stub_ReturnCallback implements PHPUnit_Framework_MockObject_Stub {
  protected $callback;
  public function __construct($callback) {
    $this->callback = $callback;
  }
  public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) {
    return call_user_func_array($this->callback, $invocation->parameters);
  }
  public function toString() {
    if (is_array($this->callback)) {
      if (is_object($this->callback[0])) {
        $class = get_class($this->callback[0]);
        $type = '->';
      }
      else {
        $class = $this->callback[0];
        $type = '::';
      }
      return sprintf('return result of user defined callback %s%s%s() with the ' . 'passed arguments', $class, $type, $this->callback[1]);
    }
    else {
      return 'return result of user defined callback ' . $this->callback . ' with the passed arguments';
    }
  }

}

Members