Return scores 8 score if argument is in array.
$argument:
bool|int
Overrides TokenInterface::scoreArgument
public function scoreArgument($argument) { if (count($this->token) === 0) { return false; } if (!\in_array($argument, $this->token, $this->strict)) { return 8; } return false; }