1<?php
2
3namespace PhpCss\Ast\Selector\Simple {
4
5  use PhpCss\Ast;
6
7  class Type extends Ast\Selector\Simple {
8
9    public $namespacePrefix = '';
10    public $elementName = '';
11
12    public function __construct(string $name, string $prefix = '') {
13      $this->namespacePrefix = $prefix;
14      $this->elementName = $name;
15    }
16  }
17}
18