composer package updates
[openemr.git] / vendor / sabberworm / php-css-parser / lib / Sabberworm / CSS / Value / Value.php
blob5d30bd97fb5a11d30d5f8a7d13ef7d42faa83d45
1 <?php
3 namespace Sabberworm\CSS\Value;
5 use Sabberworm\CSS\Renderable;
7 abstract class Value implements Renderable {
8 protected $iLineNo;
10 public function __construct($iLineNo = 0) {
11 $this->iLineNo = $iLineNo;
14 /**
15 * @return int
17 public function getLineNo() {
18 return $this->iLineNo;
21 //Methods are commented out because re-declaring them here is a fatal error in PHP < 5.3.9
22 //public abstract function __toString();
23 //public abstract function render(\Sabberworm\CSS\OutputFormat $oOutputFormat);