xref: /template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Selector/Simple/Type.php (revision 04fd306c7c155fa133ebb3669986875d65988276)
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