You are here

public function Token::isString in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/css-selector/Parser/Token.php \Symfony\Component\CssSelector\Parser\Token::isString()

Return value

bool

File

vendor/symfony/css-selector/Parser/Token.php, line 144

Class

Token
CSS selector token.

Namespace

Symfony\Component\CssSelector\Parser

Code

public function isString() {
  return self::TYPE_STRING === $this->type;
}