Skip to content
This repository was archived by the owner on Sep 23, 2021. It is now read-only.

Commit 1920219

Browse files
committed
CSSList should also implement Renderable
1 parent 230ef27 commit 1920219

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/Sabberworm/CSS/CSSList/CSSList.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22

33
namespace Sabberworm\CSS\CSSList;
44

5+
use Sabberworm\CSS\Renderable;
56
use Sabberworm\CSS\RuleSet\DeclarationBlock;
67
use Sabberworm\CSS\RuleSet\RuleSet;
78
use Sabberworm\CSS\Property\Selector;
8-
use Sabberworm\CSS\Rule\Rule;
9-
use Sabberworm\CSS\Value\ValueList;
10-
use Sabberworm\CSS\Value\CSSFunction;
119

1210
/**
1311
* A CSSList is the most generic container available. Its contents include RuleSet as well as other CSSList objects.
1412
* Also, it may contain Import and Charset objects stemming from @-rules.
1513
*/
16-
abstract class CSSList {
14+
abstract class CSSList implements Renderable {
1715

1816
protected $aContents;
1917
protected $iLineNum;

0 commit comments

Comments
 (0)