mirror of
https://github.com/moodle/moodle.git
synced 2025-05-06 08:15:51 +02:00
10 lines
181 B
PHP
10 lines
181 B
PHP
<?php
|
|
|
|
namespace Sabberworm\CSS\Value;
|
|
|
|
abstract class PrimitiveValue extends Value {
|
|
public function __construct($iLineNo = 0) {
|
|
parent::__construct($iLineNo);
|
|
}
|
|
|
|
} |