# maxbuttons/7.1.1/assets/libraries/scssphp/src/Compiler/Environment.php

MaxButtons – Create buttons, version 7.1.1. 43 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/7.1.1/code/assets/libraries/scssphp/src/Compiler/Environment.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/7.1.1/raw/assets/libraries/scssphp/src/Compiler/Environment.php
- Modified: 2016-11-28T10:07:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/maxbuttons/7.1.1/code/assets/libraries/scssphp/src/Compiler/Environment.php#L10-L20`.

```php
<?php
/**
 * SCSSPHP
 *
 * @copyright 2012-2015 Leaf Corcoran
 *
 * @license http://opensource.org/licenses/MIT MIT
 *
 * @link http://leafo.github.io/scssphp
 */

namespace Leafo\ScssPhp\Compiler;

use Leafo\ScssPhp\Block;

/**
 * SCSS compiler environment
 *
 * @author Anthon Pang <anthon.pang@gmail.com>
 */
class Environment
{
    /**
     * @var \Leafo\ScssPhp\Block
     */
    public $block;

    /**
     * @var \Leafo\ScssPhp\Compiler\Environment
     */
    public $parent;

    /**
     * @var array
     */
    public $store;

    /**
     * @var integer
     */
    public $depth;
}

```
