Exporter
2 weeks ago
QueryBuilder
2 years ago
CustomTable.php
2 months ago
DbInfo.php
7 months ago
ExcludedTables.php
5 months ago
OptionPreservationHandler.php
2 years ago
SearchReplace.php
2 months ago
SelectedTables.php
2 weeks ago
TableDto.php
1 year ago
TableService.php
9 months ago
TablesRenamer.php
2 months ago
WpDbInfo.php
9 months ago
WpOptionsInfo.php
1 year 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 |