Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | final class Rename extends AbstractOperation |
||
20 | { |
||
21 | /** @var string */ |
||
22 | private $newName = ''; |
||
23 | |||
24 | /** |
||
25 | * @param string $table |
||
26 | * @param string $newName |
||
27 | */ |
||
28 | public function __construct(string $table, string $newName) |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function execute(CapsuleInterface $capsule): void |
||
58 |