AtRule.php
13 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Sabberworm\CSS\Property; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | use MailPoetVendor\Sabberworm\CSS\Comment\Commentable; |
| 5 | use MailPoetVendor\Sabberworm\CSS\Renderable; |
| 6 | interface AtRule extends Renderable, Commentable |
| 7 | { |
| 8 | const BLOCK_RULES = 'media/document/supports/region-style/font-feature-values'; |
| 9 | const SET_RULES = 'font-face/counter-style/page/swash/styleset/annotation'; |
| 10 | public function atRuleName(); |
| 11 | public function atRuleArgs(); |
| 12 | } |
| 13 |