public function AnyValueToken::scoreArgument in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php \Prophecy\Argument\Token\AnyValueToken::scoreArgument()
Always scores 3 for any argument.
Parameters
$argument:
Return value
int
Overrides TokenInterface::scoreArgument
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Argument/ Token/ AnyValueToken.php, line 28
Class
- AnyValueToken
- Any single value token.
Namespace
Prophecy\Argument\TokenCode
public function scoreArgument($argument) {
return 3;
}