public function Token::__construct in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/css-selector/Parser/Token.php \Symfony\Component\CssSelector\Parser\Token::__construct()
- 8 core/lib/Drupal/Core/Utility/Token.php \Drupal\Core\Utility\Token::__construct()
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/Parser/Token.php \Symfony\Component\CssSelector\Parser\Token::__construct()
Parameters
int $type:
string $value:
int $position:
File
- vendor/
symfony/ css-selector/ Parser/ Token.php, line 52
Class
- Token
- CSS selector token.
Namespace
Symfony\Component\CssSelector\ParserCode
public function __construct($type, $value, $position) {
$this->type = $type;
$this->value = $value;
$this->position = $position;
}