See Release Notes
Long Term Support Release
Differences Between: [Versions 310 and 401] [Versions 311 and 401] [Versions 39 and 401]
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 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body