| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | trait ManipulationTrait |
||
| 9 | { |
||
| 10 | public function pluck(...$keys): QueryInterface |
||
| 11 | { |
||
| 12 | return new Pluck($this->rethink, /** @scrutinizer ignore-type */ $this, $keys); |
||
| 13 | } |
||
| 14 | |||
| 15 | public function without(...$keys) |
||
| 16 | { |
||
| 17 | return new Without($this->rethink, /** @scrutinizer ignore-type */ $this, $keys); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function hasFields(...$keys) |
||
| 21 | { |
||
| 22 | return new HasFields($this->rethink, /** @scrutinizer ignore-type */ $this, $keys); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function keys(): QueryInterface |
||
| 28 | } |
||
| 29 | |||
| 30 | public function values(): QueryInterface |
||
| 31 | { |
||
| 35 |