You are here

public function ArrayEveryEntryToken::__toString in Zircon Profile 8

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

Returns string representation for token.

Return value

string

Overrides TokenInterface::__toString

File

vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEveryEntryToken.php, line 70

Class

ArrayEveryEntryToken
Array every entry token.

Namespace

Prophecy\Argument\Token

Code

public function __toString() {
  return sprintf('[%s, ..., %s]', $this->value, $this->value);
}