123456789101112131415161718192021 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Setup\Declaration\Schema\Dto;
- /**
- * Table DTO Element interface.
- *
- * This interface can be used for elements that hold tables, like constraints.
- */
- interface TableElementInterface
- {
- /**
- * Get table object.
- *
- * @return Table
- */
- public function getTable();
- }
|