Files
kulakpos_web/vendor/sabberworm/php-css-parser/src/RuleSet/RuleContainer.php

15 lines
400 B
PHP
Raw Normal View History

2026-03-30 14:54:57 +07:00
<?php
declare(strict_types=1);
namespace Sabberworm\CSS\RuleSet;
2026-04-18 20:32:18 +07:00
use function Safe\class_alias;
2026-03-30 14:54:57 +07:00
2026-04-18 20:32:18 +07:00
if (!\class_exists(RuleContainer::class, false) && !\interface_exists(RuleContainer::class, false)) {
2026-03-30 14:54:57 +07:00
/**
2026-04-18 20:32:18 +07:00
* @deprecated in v9.2, will be removed in v10.0. Use `DeclarationList` instead, which is a direct replacement.
2026-03-30 14:54:57 +07:00
*/
2026-04-18 20:32:18 +07:00
class_alias(DeclarationList::class, RuleContainer::class);
2026-03-30 14:54:57 +07:00
}