summaryrefslogtreecommitdiffstats
path: root/vendor/sabberworm/php-css-parser/src/Value/PrimitiveValue.php
blob: 055a439751e7898bd901f2ef53112df3945b5e57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace Sabberworm\CSS\Value;

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