File "PrimitiveValue.php"
Full Path: /home/amervokv/ecomlive.net/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);
}
}