# maxbuttons/7.0/assets/libraries/scssphp/src/Node.php

MaxButtons – Create buttons, version 7.0. 36 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/7.0/code/assets/libraries/scssphp/src/Node.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/7.0/raw/assets/libraries/scssphp/src/Node.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.0/code/assets/libraries/scssphp/src/Node.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;

/**
 * SCSS node
 *
 * @author Anthon Pang <anthon.pang@gmail.com>
 */
abstract class Node
{
    /**
     * @var string
     */
    public $type;

    /**
     * @var integer
     */
    public $sourcePosition;

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

```
