CSSList
4 days ago
Comment
4 days ago
Parsing
4 days ago
Position
4 days ago
Property
4 days ago
Rule
4 days ago
RuleSet
4 days ago
Value
4 days ago
CSSElement.php
2 months ago
OutputFormat.php
4 days ago
OutputFormatter.php
4 days ago
Parser.php
4 days ago
Renderable.php
4 days ago
Settings.php
4 days ago
ShortClassNameProvider.php
4 days ago
Renderable.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | declare (strict_types=1); |
| 4 | namespace ProfilePressVendor\Sabberworm\CSS; |
| 5 | |
| 6 | interface Renderable |
| 7 | { |
| 8 | public function render(OutputFormat $outputFormat): string; |
| 9 | /** |
| 10 | * @return array<string, bool|int|float|string|array<mixed>|null> |
| 11 | * |
| 12 | * @internal |
| 13 | */ |
| 14 | public function getArrayRepresentation(): array; |
| 15 | } |
| 16 |