diff --git a/lib/CSSRuleSet.php b/lib/CSSRuleSet.php index 2788f2ff..b1b5b1f4 100644 --- a/lib/CSSRuleSet.php +++ b/lib/CSSRuleSet.php @@ -77,7 +77,11 @@ public function __construct($sType) { parent::__construct(); $this->sType = $sType; } - + + public function getType() { + return $this->sType; + } + public function __toString() { $sResult = "@{$this->sType} {"; $sResult .= parent::__toString();