public function PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex::__construct

Parameters

integer $sequenceIndex:

File

drupal/core/vendor/phpunit/phpunit-mock-objects/PHPUnit/Framework/MockObject/Matcher/InvokedAtIndex.php, line 78

Class

PHPUnit_Framework_MockObject_Matcher_InvokedAtIndex
Invocation matcher which checks if a method was invoked at a certain index.

Code

public function __construct($sequenceIndex) {
  $this->sequenceIndex = $sequenceIndex;
}