PluginProbe
SendWP / 1.4.4
SendWP v1.4.4
trunk 0.0.1 0.0.2 0.0.3 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1 1.2.10 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.3.1 1.4.4 1.4.5 1.4.6 1.4.8
sendwp / vendor / scssphp / scssphp / src / Block.php

Block.php in SendWP 1.4.4, at vendor/scssphp/scssphp/src/Block.php

74 lines 887 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;
14
15 /**
16 * Block
17 *
18 * @author Anthon Pang <anthon.pang@gmail.com>
19 *
20 * @internal
21 */
22 class Block
23 {
24 /**
25 * @var string|null
26 */
27 public $type;
28
29 /**
30 * @var Block|null
31 */
32 public $parent;
33
34 /**
35 * @var string
36 */
37 public $sourceName;
38
39 /**
40 * @var int
41 */
42 public $sourceIndex;
43
44 /**
45 * @var int
46 */
47 public $sourceLine;
48
49 /**
50 * @var int
51 */
52 public $sourceColumn;
53
54 /**
55 * @var array|null
56 */
57 public $selectors;
58
59 /**
60 * @var array
61 */
62 public $comments;
63
64 /**
65 * @var array
66 */
67 public $children;
68
69 /**
70 * @var Block|null
71 */
72 public $selfParent;
73 }
74