Database
1 year ago
Database.php
1 year ago
DatabaseInterface.php
1 year ago
DateTimeAdapter.php
1 year ago
Directory.php
1 year ago
DirectoryInterface.php
1 year ago
Maintenance.php
4 years ago
PhpAdapter.php
2 years ago
SourceDatabase.php
2 years ago
WpAdapter.php
1 year ago
DatabaseInterface.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Adapter; |
| 4 | |
| 5 | use WPStaging\Framework\Adapter\Database\InterfaceDatabaseClient; |
| 6 | |
| 7 | interface DatabaseInterface |
| 8 | { |
| 9 | public function getClient(): InterfaceDatabaseClient; |
| 10 | |
| 11 | public function getPrefix(): string; |
| 12 | |
| 13 | public function getBasePrefix(): string; |
| 14 | |
| 15 | public function getSqlVersion(bool $compact = false, bool $refresh = false): string; |
| 16 | } |
| 17 |