| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 29 | public function __construct( | ||
| 30 | RethinkInterface $rethink, | ||
| 31 | MessageInterface $message, | ||
| 32 | QueryInterface $functionOne, | ||
| 33 | QueryInterface $functionTwo | ||
| 34 |     ) { | ||
| 35 | parent::__construct($rethink, $message); | ||
| 36 | |||
| 37 | $this->rethink = $rethink; | ||
| 38 | $this->message = $message; | ||
| 39 | $this->functionOne = $functionOne; | ||
| 40 | $this->functionTwo = $functionTwo; | ||
| 41 | } | ||
| 58 |