You are here

public function AnyValueToken::scoreArgument in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\Token

Code

public function scoreArgument($argument) {
  return 3;
}