PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / 3.3.2
Block Animations, Motion & Scroll Effects – Ghost Kit v3.3.2
3.7.2 3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / composer-libraries / vendor / scssphp / scssphp / src / Node.php

Node.php in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.2, at composer-libraries/vendor/scssphp/scssphp/src/Node.php

44 lines 543 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 * Base node
17 *
18 * @author Anthon Pang <[email protected]>
19 *
20 * @internal
21 */
22 abstract class Node
23 {
24 /**
25 * @var string
26 */
27 public $type;
28
29 /**
30 * @var int
31 */
32 public $sourceIndex;
33
34 /**
35 * @var int|null
36 */
37 public $sourceLine;
38
39 /**
40 * @var int|null
41 */
42 public $sourceColumn;
43 }
44