| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | public function __construct( |
||
| 37 | RethinkInterface $rethink, |
||
| 38 | MessageInterface $message, |
||
| 39 | QueryInterface $query, |
||
| 40 | string $oldValue, |
||
| 41 | string $newValue |
||
| 42 | ) { |
||
| 43 | parent::__construct($rethink, $message); |
||
| 44 | |||
| 45 | $this->query = $query; |
||
| 46 | $this->rethink = $rethink; |
||
| 47 | $this->message = $message; |
||
| 48 | $this->oldValue = $oldValue; |
||
| 49 | $this->newValue = $newValue; |
||
| 50 | } |
||
| 73 |