Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class TableCreate extends AbstractQuery |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $name; |
||
17 | |||
18 | /** |
||
19 | * @param RethinkInterface $rethink |
||
20 | * @param MessageInterface $message |
||
21 | * @param string $name |
||
22 | 13 | */ |
|
23 | public function __construct(RethinkInterface $rethink, MessageInterface $message, string $name) |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | 13 | */ |
|
35 | public function toArray(): array |
||
48 |