Total Complexity | 6 |
Total Lines | 55 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
22 | class Crunched extends Formatter |
||
23 | { |
||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function __construct() |
||
28 | { |
||
29 | $this->indentLevel = 0; |
||
30 | $this->indentChar = ' '; |
||
31 | $this->break = ''; |
||
32 | $this->open = '{'; |
||
33 | $this->close = '}'; |
||
34 | $this->tagSeparator = ','; |
||
35 | $this->assignSeparator = ':'; |
||
36 | $this->keepSemicolons = false; |
||
37 | } |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function blockLines(OutputBlock $block) |
||
58 | } |
||
59 | } |
||
60 | } |
||
61 |