File "PrimitiveValue.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/woocommerce/vendor/sabberworm/php-css-parser/src/Value/PrimitiveValue.php
File size: 228 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Sabberworm\CSS\Value;

abstract class PrimitiveValue extends Value
{
    /**
     * @param int $iLineNo
     */
    public function __construct($iLineNo = 0)
    {
        parent::__construct($iLineNo);
    }
}