• File: PrimitiveValue.php
  • Full Path: /home/monpetu/www/leoreno.fr/term-description/PrimitiveValue.php
  • Date Modified: 03/03/2026 2:45 AM
  • 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);
    }
}