You are here

public function PHPUnit_Framework_Constraint_IsAnything::count in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/Constraint/IsAnything.php \PHPUnit_Framework_Constraint_IsAnything::count()

Counts the number of constraint elements.

@since Method available since Release 3.5.0

Return value

int

Overrides PHPUnit_Framework_Constraint::count

File

vendor/phpunit/phpunit/src/Framework/Constraint/IsAnything.php, line 55

Class

PHPUnit_Framework_Constraint_IsAnything
Constraint that accepts any input value.

Code

public function count() {
  return 0;
}