You are here

public function Reader::__construct in Zircon Profile 8

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

Parameters

string $source:

File

vendor/symfony/css-selector/Parser/Reader.php, line 42

Class

Reader
CSS selector reader.

Namespace

Symfony\Component\CssSelector\Parser

Code

public function __construct($source) {
  $this->source = $source;
  $this->length = strlen($source);
}