Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | abstract class AtRule implements Extractable |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $raw; |
||
15 | |||
16 | /** |
||
17 | * ImportRule constructor. |
||
18 | * |
||
19 | * @param string $raw |
||
20 | */ |
||
21 | public function __construct(string $raw) |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | public function __toString(): string |
||
34 |