• File: PrimitiveValue.php
  • Full Path: /home/masbinta/public_html/core/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/PrimitiveValue.php
  • File size: 181 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Sabberworm\CSS\Value;

abstract class PrimitiveValue extends Value {
    public function __construct($iLineNo = 0) {
        parent::__construct($iLineNo);
    }

}