Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | final class PrimaryKeys extends AbstractOperation |
||
19 | { |
||
20 | /** @var array */ |
||
21 | private $columns = []; |
||
22 | |||
23 | /** |
||
24 | * @param string $table |
||
25 | * @param array $columns |
||
26 | */ |
||
27 | public function __construct(string $table, array $columns) |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | public function execute(CapsuleInterface $capsule): void |
||
50 |