function Token::__construct
Same name in this branch
- 11.1.x vendor/doctrine/lexer/src/Token.php \Doctrine\Common\Lexer\Token::__construct()
- 11.1.x vendor/twig/twig/src/Token.php \Twig\Token::__construct()
- 11.1.x vendor/symfony/css-selector/Parser/Token.php \Symfony\Component\CssSelector\Parser\Token::__construct()
- 11.1.x vendor/mck89/peast/lib/Peast/Syntax/Token.php \Peast\Syntax\Token::__construct()
- 11.1.x core/lib/Drupal/Core/Utility/Token.php \Drupal\Core\Utility\Token::__construct()
Token constructor.
File
-
vendor/
theseer/ tokenizer/ src/ Token.php, line 18
Class
Namespace
TheSeer\TokenizerCode
public function __construct(int $line, string $name, string $value) {
$this->line = $line;
$this->name = $name;
$this->value = $value;
}