public function __construct(Container $container) { parent::__construct($container); $this->traverser = new NodeTraverser(); $this->visitors = []; }
public function __construct(Container $container) { parent::__construct($container); $this->nodes = []; $this->diagnostics = []; }
/** * @param Container $container * @param string $path Full, absolute path. * @param string $contents UTF-8 encoded contents. */ public function __construct(Container $container, $path, $contents) { parent::__construct($container); $this->path = $path; $this->contents = $contents; }
/** * @param Container $container * @param string $path */ public function __construct(Container $container, $path) { parent::__construct($container); $this->path = $path; }