You are here

class PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php \PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount

Invocation matcher which checks if a method has been invoked zero or more times. This matcher will always match.

@since Class available since Release 1.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount

1 string reference to 'PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount'
PHPUnit_Framework_MockObject_Matcher::verify in vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher.php

File

vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Matcher/AnyInvokedCount.php, line 17

View source
class PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount extends PHPUnit_Framework_MockObject_Matcher_InvokedRecorder {

  /**
   * @return string
   */
  public function toString() {
    return 'invoked zero or more times';
  }

  /**
   */
  public function verify() {
  }

}

Members