File "AtRule.php"

Full Path: /home/warrior1/public_html/languages/wp-content/plugins/mailpoet/vendor-prefixed/sabberworm/php-css-parser/src/Property/AtRule.php
File size: 461 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Sabberworm\CSS\Property;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Sabberworm\CSS\Comment\Commentable;
use MailPoetVendor\Sabberworm\CSS\Renderable;
interface AtRule extends Renderable, Commentable
{
 const BLOCK_RULES = 'media/document/supports/region-style/font-feature-values';
 const SET_RULES = 'font-face/counter-style/page/swash/styleset/annotation';
 public function atRuleName();
 public function atRuleArgs();
}