You are here

public function LogicalNotToken::isLast in Zircon Profile 8.0

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

Returns true if preset token is last.

Return value

bool|int

Overrides TokenInterface::isLast

File

vendor/phpspec/prophecy/src/Prophecy/Argument/Token/LogicalNotToken.php, line 49

Class

LogicalNotToken
Logical NOT token.

Namespace

Prophecy\Argument\Token

Code

public function isLast() {
  return $this->token
    ->isLast();
}