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