CartsTable.php
8 months ago
ContactListsTable.php
10 months ago
DatabaseInterface.php
8 months ago
DatabaseTable.php
10 months ago
FormsTable.php
7 months ago
DatabaseInterface.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Hostinger\Reach\Admin\Database; |
| 4 | |
| 5 | if ( ! defined( 'ABSPATH' ) ) { |
| 6 | die; |
| 7 | } |
| 8 | |
| 9 | interface DatabaseInterface { |
| 10 | public function create(): void; |
| 11 | public function table_name(): string; |
| 12 | public function schema(): array; |
| 13 | public function execute_db_delta( string $sql ): void; |
| 14 | } |
| 15 |