private function ArrayCountToken::hasProperCount in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php \Prophecy\Argument\Token\ArrayCountToken::hasProperCount()
Returns true if $argument has expected number of elements
Parameters
array|\Countable $argument:
Return value
bool
1 call to ArrayCountToken::hasProperCount()
- ArrayCountToken::scoreArgument in vendor/
phpspec/ prophecy/ src/ Prophecy/ Argument/ Token/ ArrayCountToken.php - Scores 6 when argument has preset number of elements.
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Argument/ Token/ ArrayCountToken.php, line 82
Class
- ArrayCountToken
- Array elements count token.
Namespace
Prophecy\Argument\TokenCode
private function hasProperCount($argument) {
return $this->count === count($argument);
}