PluginProbe
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI / 3.0.6
Everest Forms – Contact Form, Payment Form, Quiz, Survey & Custom Form Builder with AI v3.0.6
3.6.1 3.6.0 3.5.3 3.5.2 3.5.1 3.5.0 3.4.8 3.4.7 3.4.6 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.5.1 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 All 165 releases
everest-forms / vendor / scssphp / scssphp / src / Block / DirectiveBlock.php
DirectiveBlock.php
39 lines 561 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * SCSSPHP
5 *
6 * @copyright 2012-2020 Leaf Corcoran
7 *
8 * @license http://opensource.org/licenses/MIT MIT
9 *
10 * @link http://scssphp.github.io/scssphp
11 */
12
13 namespace ScssPhp\ScssPhp\Block;
14
15 use ScssPhp\ScssPhp\Block;
16 use ScssPhp\ScssPhp\Node\Number;
17 use ScssPhp\ScssPhp\Type;
18
19 /**
20 * @internal
21 */
22 class DirectiveBlock extends Block
23 {
24 /**
25 * @var string|array
26 */
27 public $name;
28
29 /**
30 * @var array|Number|null
31 */
32 public $value;
33
34 public function __construct()
35 {
36 $this->type = Type::T_DIRECTIVE;
37 }
38 }
39