Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class TableDrop extends AbstractQuery |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $name; |
||
16 | |||
17 | public function __construct(RethinkInterface $rethink, string $name) |
||
18 | { |
||
19 | parent::__construct($rethink); |
||
20 | |||
21 | $this->rethink = $rethink; |
||
22 | |||
23 | 12 | $this->name = $name; |
|
24 | } |
||
25 | 12 | ||
26 | public function toArray(): array |
||
34 | ], |
||
35 | 12 | ], |
|
39 |