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