| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class Add extends Index |
||
| 12 | { |
||
| 13 | use OptionsTrait; |
||
|
|
|||
| 14 | |||
| 15 | 192 | public function __construct(string $table, array $columns, array $options = []) |
|
| 16 | { |
||
| 17 | 192 | $this->options = $options; |
|
| 18 | 192 | parent::__construct($table, $columns); |
|
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | 184 | public function execute(CapsuleInterface $capsule): void |
|
| 41 | } |
||
| 42 | } |
||
| 44 |