Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function __construct( |
||
29 | RethinkInterface $rethink, |
||
30 | QueryInterface $query, |
||
31 | string $oldValue, |
||
32 | string $newValue |
||
33 | ) { |
||
34 | parent::__construct($rethink); |
||
35 | |||
36 | $this->query = $query; |
||
37 | $this->rethink = $rethink; |
||
38 | |||
39 | $this->oldValue = $oldValue; |
||
40 | $this->newValue = $newValue; |
||
41 | } |
||
61 |