| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | abstract class GlyphInline extends Glyph |
||
| 10 | { |
||
| 11 | 34 | public function __construct(protected FrameConfigInterface $globalConfig) |
|
| 12 | { |
||
| 13 | 34 | parent::__construct($globalConfig); |
|
| 14 | 34 | $this->setConfig([ |
|
| 15 | 'textAlign' => 'left', |
||
| 16 | 'maxWidth' => 80, |
||
| 17 | 'color' => Color::WHITE, |
||
| 18 | 'backgroundColor' => Color::BLACK, |
||
| 19 | 'mode' => SymbolMode::DEFAULT, |
||
| 20 | ]); |
||
| 21 | } |
||
| 22 | |||
| 23 | 4 | public function setAlign(string $align): GlyphInline |
|
| 31 | } |
||
| 32 | } |
||
| 33 |