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

MaxButtons – Create buttons, version 7.11. 41 lines.

- Page: https://pluginprobe.com/plugins/maxbuttons/7.11/code/assets/libraries/scssphp/src/Node.php
- Raw: https://pluginprobe.com/plugins/maxbuttons/7.11/raw/assets/libraries/scssphp/src/Node.php
- Modified: 2018-06-25T15:58:52+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.11/code/assets/libraries/scssphp/src/Node.php#L10-L20`.

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

namespace Leafo\ScssPhp;

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

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

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

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

```
