| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | 1 | public function __construct( |
|
| 49 | OutputInterface $output, |
||
| 50 | CountableReader $reader, |
||
| 51 | $verbosity = 'debug', |
||
| 52 | $redrawFrequency = 1 |
||
| 53 | ) { |
||
| 54 | 1 | $this->output = $output; |
|
| 55 | 1 | $this->reader = $reader; |
|
| 56 | 1 | $this->verbosity = $verbosity; |
|
| 57 | 1 | $this->redrawFrequency = $redrawFrequency; |
|
| 58 | 1 | } |
|
| 59 | |||
| 103 |