| Total Complexity | 3 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 18 | final class Drop extends AbstractOperation |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Column name. |
||
| 22 | * |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | private $name; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $table |
||
| 29 | * @param string $name |
||
| 30 | */ |
||
| 31 | public function __construct(string $table, string $name) |
||
| 32 | { |
||
| 33 | parent::__construct($table); |
||
| 34 | $this->name = $name; |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function execute(CapsuleInterface $capsule): void |
||
| 52 | } |
||
| 53 | } |
||
| 54 |