Total Complexity | 4 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
18 | final class Rename extends AbstractOperation |
||
19 | { |
||
20 | /** @var string */ |
||
21 | private $name = ''; |
||
22 | |||
23 | /** @var string */ |
||
24 | private $newName = ''; |
||
25 | |||
26 | /** |
||
27 | * @param string $table |
||
28 | * @param string $name |
||
29 | * @param string $newName |
||
30 | */ |
||
31 | public function __construct(string $table, string $name, string $newName) |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | public function execute(CapsuleInterface $capsule): void |
||
66 |