| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ResultPrinter extends \PHPUnit\TextUI\ResultPrinter |
||
| 11 | { |
||
| 12 | public function __construct( |
||
| 13 | $out = null, |
||
| 14 | $verbose = false, |
||
| 15 | $colors = \PHPUnit\TextUI\ResultPrinter::COLOR_DEFAULT, |
||
| 16 | $debug = false, |
||
| 17 | $numberOfColumns = 80, |
||
| 18 | $reverse = false |
||
| 19 | ) { |
||
| 20 | if ($out === null) { |
||
| 21 | $out = STDOUT; |
||
| 22 | } |
||
| 23 | |||
| 24 | parent::__construct($out, $verbose, $colors, $debug, $numberOfColumns, $reverse); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function flush(): void |
||
| 31 | } |
||
| 32 | } |
||
| 34 |