Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | final class Add extends Index |
||
19 | { |
||
20 | use OptionsTrait; |
||
|
|||
21 | |||
22 | /** |
||
23 | * @param string $table |
||
24 | * @param array $columns |
||
25 | * @param array $options |
||
26 | */ |
||
27 | public function __construct(string $table, array $columns, array $options = []) |
||
28 | { |
||
29 | parent::__construct($table, $columns); |
||
30 | $this->options = $options; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function execute(CapsuleInterface $capsule): void |
||
53 | } |
||
54 | } |
||
56 |