Stubs a method by returning a user-defined stack of values.
@package PHPUnit_MockObject @author Patrick Müller <elias0@gmx.net> @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
Expanded class hierarchy of PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls
class PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls implements PHPUnit_Framework_MockObject_Stub {
  protected $stack;
  protected $value;
  public function __construct($stack) {
    $this->stack = $stack;
  }
  public function invoke(PHPUnit_Framework_MockObject_Invocation $invocation) {
    $this->value = array_shift($this->stack);
    if ($this->value instanceof PHPUnit_Framework_MockObject_Stub) {
      $this->value = $this->value
        ->invoke($invocation);
    }
    return $this->value;
  }
  public function toString() {
    return sprintf('return user-specified value %s', PHPUnit_Util_Type::toString($this->value));
  }
}| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls:: | protected | property | ||
| PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls:: | protected | property | ||
| PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls:: | public | function | Fakes the processing of the invocation $invocation by returning a
specific value. Overrides PHPUnit_Framework_MockObject_Stub:: | |
| PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls:: | public | function | Returns a string representation of the object. Overrides PHPUnit_Framework_SelfDescribing:: | |
| PHPUnit_Framework_MockObject_Stub_ConsecutiveCalls:: | public | function |