| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class Compact extends Formatter |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | public function __construct() |
||
| 27 | { |
||
| 28 | $this->indentLevel = 0; |
||
| 29 | $this->indentChar = ''; |
||
| 30 | $this->break = ''; |
||
| 31 | $this->open = ' {'; |
||
| 32 | $this->close = "}\n\n"; |
||
| 33 | $this->tagSeparator = ','; |
||
| 34 | $this->assignSeparator = ':'; |
||
| 35 | $this->keepSemicolons = true; |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function indentStr() |
||
| 44 | } |
||
| 45 | } |
||
| 46 |