| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 6 | public function __construct($inputQueue, $errorQueue, $purgeOnStartup) |
|
| 30 | { |
||
| 31 | 6 | Guard::againstNullAndEmpty('inputQueue', $inputQueue); |
|
| 32 | 5 | Guard::againstNullAndEmpty('errorQueue', $errorQueue); |
|
| 33 | |||
| 34 | 4 | $this->inputQueue = $inputQueue; |
|
| 35 | 4 | $this->errorQueue = $errorQueue; |
|
| 36 | 4 | $this->purgeOnStartup = $purgeOnStartup; |
|
| 37 | 4 | } |
|
| 38 | |||
| 63 |