| 1 | <?php |
||
| 13 | class TableCommand extends AbstractCommand implements SQLCommandInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Table to be updated. |
||
| 17 | * |
||
| 18 | * @var Table |
||
| 19 | */ |
||
| 20 | protected $table; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Table $table |
||
| 24 | */ |
||
| 25 | public function __construct(Table $table) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function getDriver(): Driver |
||
| 37 | } |