aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/vendor/splitbrain/lesserphp/src/FormatterCompressed.php
blob: acb6de81bb97e9830fc3507072439effaf36d4c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
 * http://leafo.net/lessphp
 *
 * LESS CSS compiler, adapted from http://lesscss.org
 *
 * Copyright 2013, Leaf Corcoran <leafot@gmail.com>
 * Copyright 2016, Marcus Schwarz <github@maswaba.de>
 * Licensed under MIT or GPLv3, see LICENSE
 */


namespace LesserPHP;

class FormatterCompressed extends FormatterClassic
{
    public $disableSingle = true;
    public $open = '{';
    public $selectorSeparator = ',';
    public $assignSeparator = ':';
    public $break = '';
    public $compressColors = true;

    public function indentStr($n = 0)
    {
        return '';
    }
}