| 1 | <?php |
||
| 10 | abstract class IndexOperation extends TableOperation |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Columns index associated to, order matter! |
||
| 14 | * |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | protected $columns = []; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string|null $database |
||
| 21 | * @param string $table |
||
| 22 | * @param array $columns |
||
| 23 | */ |
||
| 24 | public function __construct($database, string $table, array $columns) |
||
| 30 | } |