pokemon-showdown-client/lib/css-sanitizer/Wikimedia/CSS/Objects/DeclarationList.php

26 lines
580 B
PHP

<?php
/**
* @file
* @license https://opensource.org/licenses/Apache-2.0 Apache-2.0
*/
namespace Wikimedia\CSS\Objects;
/**
* Represent a list of declarations
*/
class DeclarationList extends CSSObjectList {
protected static $objectType = Declaration::class;
protected function getSeparator( CSSObject $left, CSSObject $right = null ) {
if ( $right ) {
return [
new Token( Token::T_SEMICOLON ),
new Token( Token::T_WHITESPACE, [ 'significant' => false ] ),
];
} else {
return [ new Token( Token::T_SEMICOLON, [ 'significant' => false ] ) ];
}
}
}