QueryBuilder
2 years ago
DbInfo.php
2 years ago
ExcludedTables.php
4 years ago
OptionPreservationHandler.php
2 years ago
SearchReplace.php
2 years ago
SelectedTables.php
2 years ago
TableDto.php
5 years ago
TableService.php
2 years ago
TablesRenamer.php
2 years ago
WpDbInfo.php
2 years ago
iDbInfo.php
2 years ago
iDbInfo.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Database; |
| 4 | |
| 5 | interface iDbInfo |
| 6 | { |
| 7 | public function getDbCollation(): string; |
| 8 | public function getDbEngine(): string; |
| 9 | public function getMySqlServerVersion(): int; |
| 10 | public function getMySqlClientVersion(): int; |
| 11 | public function toArray(): array; |
| 12 | } |
| 13 |