moodle/lib/php-css-parser/Value/PrimitiveValue.php
Frederic Massart fbe18cc022 MDL-55224 core: Import PHP-CSS-Parser into core
Part of MDL-55071
2016-09-23 10:49:49 +01:00

10 lines
181 B
PHP

<?php
namespace Sabberworm\CSS\Value;
abstract class PrimitiveValue extends Value {
public function __construct($iLineNo = 0) {
parent::__construct($iLineNo);
}
}