Файл: contao-3.5.8/vendor/leafo/scssphp/src/Compiler/Environment.php
Строк: 24
<?php
/**
* SCSSPHP
*
* @copyright 2012-2015 Leaf Corcoran
*
* @license http://opensource.org/licenses/MIT MIT
*
* @link http://leafo.github.io/scssphp
*/
namespace LeafoScssPhpCompiler;
use LeafoScssPhpBlock;
/**
* SCSS compiler environment
*
* @author Anthon Pang <anthon.pang@gmail.com>
*/
class Environment
{
/**
* @var LeafoScssPhpBlock
*/
public $block;
/**
* @var LeafoScssPhpCompilerEnvironment
*/
public $parent;
/**
* @var array
*/
public $store;
/**
* @var integer
*/
public $depth;
}