CSSList
8 months ago
Comment
8 months ago
Parsing
8 months ago
Position
8 months ago
Property
8 months ago
Rule
8 months ago
RuleSet
8 months ago
Value
8 months ago
CSSElement.php
9 months ago
OutputFormat.php
8 months ago
OutputFormatter.php
8 months ago
Parser.php
8 months ago
Renderable.php
8 months ago
Settings.php
8 months ago
CSSElement.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Sabberworm\CSS; |
| 6 | |
| 7 | /** |
| 8 | * Represents any entity in the CSS that is encapsulated by a class. |
| 9 | * |
| 10 | * Its primary purpose is to provide a type for use with `Document::getAllValues()` |
| 11 | * when a subset of values from a particular part of the document is required. |
| 12 | * |
| 13 | * Thus, elements which don't contain `Value`s (such as statement at-rules) don't need to implement this. |
| 14 | * |
| 15 | * It extends `Renderable` because every element is renderable. |
| 16 | */ |
| 17 | interface CSSElement extends Renderable {} |
| 18 |