Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function __construct( |
||
22 | $out = null, |
||
23 | $verbose = false, |
||
24 | $colors = \PHPUnit\TextUI\ResultPrinter::COLOR_DEFAULT, |
||
25 | $debug = false, |
||
26 | $numberOfColumns = 80, |
||
27 | $reverse = false |
||
28 | ) |
||
29 | { |
||
30 | if ($out === null) { |
||
31 | $out = STDOUT; |
||
32 | } |
||
33 | parent::__construct($out, $verbose, $colors, $debug, $numberOfColumns, $reverse); |
||
34 | } |
||
35 | |||
43 |