Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace Dynart\Micro; |
| 4 | |
| 5 | interface CliOutputInterface { |
| 6 | public function setColor(?int $color, ?int $bgColor = null): void; |
| 7 | public function setUseColor(bool $value): void; |
| 8 | public function write(string $text): void; |
| 9 | public function writeLine(string $text): void; |
| 10 | } |