| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 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 | } |
||
| 34 |