Node.php in Block Animations, Motion & Scroll Effects – Ghost Kit 3.3.2, at composer-libraries/vendor/scssphp/scssphp/src/Node.php
| 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 |