PhpCss\Scanner\Token::__construct PHP Метод

__construct() публичный Метод

Construct and initialize token
public __construct ( integer $type, string $content = '', integer $position ) : Token
$type integer
$content string
$position integer
Результат Token
    public function __construct($type = 0, $content = '', $position = -1)
    {
        $this->_type = $type;
        $this->_content = $content;
        $this->_length = strlen($content);
        $this->_position = $position;
    }