You are here

public function Token::__construct in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/css-selector/Parser/Token.php \Symfony\Component\CssSelector\Parser\Token::__construct()
  2. 8 core/lib/Drupal/Core/Utility/Token.php \Drupal\Core\Utility\Token::__construct()
Same name and namespace in other branches
  1. 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\Parser

Code

public function __construct($type, $value, $position) {
  $this->type = $type;
  $this->value = $value;
  $this->position = $position;
}