You are here

public function AnyValuesToken::isLast in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php \Prophecy\Argument\Token\AnyValuesToken::isLast()

Returns true to stop wildcard from processing other tokens.

Return value

bool

Overrides TokenInterface::isLast

File

vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php, line 38

Class

AnyValuesToken
Any values token.

Namespace

Prophecy\Argument\Token

Code

public function isLast() {
  return true;
}