pokemon-showdown-client/lib/css-sanitizer/Wikimedia/CSS/Objects/ComponentValue.php
2023-06-16 11:33:53 -07:00

33 lines
681 B
PHP

<?php
/**
* @file
* @license https://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace Wikimedia\CSS\Objects;
/**
* Represent a CSS component value
*/
abstract class ComponentValue implements CSSObject {
/** @var int Line in the input where this component value starts */
protected $line = -1;
/** @var int Position in the input where this component value starts */
protected $pos = -1;
/**
* Get the position of this ComponentValue in the input stream
* @return array [ $line, $pos ]
*/
public function getPosition() {
return [ $this->line, $this->pos ];
}
/** @inheritDoc */
public function toComponentValueArray() {
return [ $this ];
}
}