| Total Complexity | 7 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class Expanded extends Formatter |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | public function __construct() |
||
| 29 | { |
||
| 30 | $this->indentLevel = 0; |
||
| 31 | $this->indentChar = ' '; |
||
| 32 | $this->break = "\n"; |
||
| 33 | $this->open = ' {'; |
||
| 34 | $this->close = '}'; |
||
| 35 | $this->tagSeparator = ', '; |
||
| 36 | $this->assignSeparator = ': '; |
||
| 37 | $this->keepSemicolons = true; |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | protected function indentStr() |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | */ |
||
| 51 | protected function blockLines(OutputBlock $block) |
||
| 67 | } |
||
| 68 | } |
||
| 70 |