You are here

13 methods override TokenInterface::scoreArgument() in Zircon Profile 8.0

AnyValuesToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php
Always scores 2 for any argument.
AnyValueToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValueToken.php
Always scores 3 for any argument.
ArrayCountToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayCountToken.php
Scores 6 when argument has preset number of elements.
ArrayEntryToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php
Scores half of combined scores from key and value tokens for same entry. Capped at 8. If argument implements \ArrayAccess without \Traversable, then key token is restricted to ExactValueToken.
ArrayEveryEntryToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php
Calculates token match score for provided argument.
CallbackToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/CallbackToken.php
Scores 7 if callback returns true, false otherwise.
ExactValueToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ExactValueToken.php
Scores 10 if argument matches preset value.
IdenticalValueToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/IdenticalValueToken.php
Scores 11 if argument matches preset value.
LogicalAndToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalAndToken.php
Scores maximum score from scores returned by tokens for this argument if all of them score.
LogicalNotToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php
Scores 4 when preset token does not match the argument.
ObjectStateToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ObjectStateToken.php
Scores 8 if argument is an object, which method returns expected value.
StringContainsToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/StringContainsToken.php
Calculates token match score for provided argument.
TypeToken::scoreArgument in vendor/phpspec/prophecy/src/Prophecy/Argument/Token/TypeToken.php
Scores 5 if argument has the same type this token was constructed with.