PluginProbe
WCPOS – Point of Sale (POS) plugin for WooCommerce / 1.10.19
WCPOS – Point of Sale (POS) plugin for WooCommerce v1.10.19
1.10.19 1.10.18 1.10.17 1.10.16 1.10.15 1.10.13 1.10.14 1.10.12 1.10.11 1.10.10 1.10.9 1.10.8 untagged-3d9b7ccddc54df87c672 1.10.7 1.10.6 1.10.5 1.10.3 1.10.4 1.10.2 1.10.1 1.10.0 1.9.17 1.9.15 1.9.16 1.9.14 All 163 releases
woocommerce-pos / vendor_prefixed / sabberworm / php-css-parser / src / Property / AtRule.php

AtRule.php in WCPOS – Point of Sale (POS) plugin for WooCommerce 1.10.19, at vendor_prefixed/sabberworm/php-css-parser/src/Property/AtRule.php

25 lines 780 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare (strict_types=1);
4 namespace WCPOS\Vendor\Sabberworm\CSS\Property;
5
6 use WCPOS\Vendor\Sabberworm\CSS\CSSList\CSSListItem;
7 /**
8 * Note that `CSSListItem` extends both `Commentable` and `Renderable`,
9 * so concrete classes implementing this interface must also implement those.
10 */
11 interface AtRule extends CSSListItem
12 {
13 /**
14 * Since there are more set rules than block rules,
15 * we’re whitelisting the block rules and have anything else be treated as a set rule.
16 *
17 * @internal since 8.5.2
18 */
19 public const BLOCK_RULES = ['media', 'document', 'supports', 'region-style', 'font-feature-values', 'container', 'layer', 'scope', 'starting-style'];
20 /**
21 * @return non-empty-string
22 */
23 public function atRuleName() : string;
24 }
25