# getresponse/1.5.2/includes/classes/scssphp/src/Formatter/Expanded.php

GetResponse Forms by Optin Cat, version 1.5.2. 35 lines.

- Page: https://pluginprobe.com/plugins/getresponse/1.5.2/code/includes/classes/scssphp/src/Formatter/Expanded.php
- Raw: https://pluginprobe.com/plugins/getresponse/1.5.2/raw/includes/classes/scssphp/src/Formatter/Expanded.php
- Modified: 2015-06-12T09:52:22+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/getresponse/1.5.2/code/includes/classes/scssphp/src/Formatter/Expanded.php#L10-L20`.

```php
<?php
/**
 * SCSSPHP
 *
 * @copyright 2012-2014 Leaf Corcoran
 *
 * @license http://opensource.org/licenses/gpl-license GPL-3.0
 * @license http://opensource.org/licenses/MIT MIT
 *
 * @link http://leafo.net/scssphp
 */

namespace Leafo\ScssPhp\Formatter;

use Leafo\ScssPhp\Formatter;

/**
 * SCSS expanded formatter
 *
 * @author Leaf Corcoran <leafot@gmail.com>
 */
class Expanded extends Formatter
{
    public function __construct()
    {
        $this->indentLevel = 0;
        $this->indentChar = '  ';
        $this->break = "\n";
        $this->open = ' {';
        $this->close = '}';
        $this->tagSeparator = ', ';
        $this->assignSeparator = ': ';
    }
}

```
