| 1 |
<?php |
| 2 |
|
| 3 |
declare (strict_types=1); |
| 4 |
namespace WCPOS\Vendor\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 |
|