public function PHPUnit_Framework_MockObject_Matcher_InvokedRecorder::getInvocations

Return value

PHPUnit_Framework_MockObject_Invocation[]

File

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

Class

PHPUnit_Framework_MockObject_Matcher_InvokedRecorder
Records invocations and provides convenience methods for checking them later on. This abstract class can be implemented by matchers which needs to check the number of times an invocation has occured.

Code

public function getInvocations() {
  return $this->invocations;
}