public function ArrayEntryToken::__toString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpspec/prophecy/src/Prophecy/Argument/Token/ArrayEntryToken.php \Prophecy\Argument\Token\ArrayEntryToken::__toString()
Returns string representation for token.
Return value
string
Overrides TokenInterface::__toString
File
- vendor/
phpspec/ prophecy/ src/ Prophecy/ Argument/ Token/ ArrayEntryToken.php, line 85
Class
- ArrayEntryToken
- Array entry token.
Namespace
Prophecy\Argument\TokenCode
public function __toString() {
return sprintf('[..., %s => %s, ...]', $this->key, $this->value);
}