AdvanceStagingOptionsInterface.php
4 months ago
StagingDatabaseDtoInterface.php
1 year ago
StagingNetworkDtoInterface.php
2 months ago
StagingOperationDtoInterface.php
5 months ago
StagingSiteDtoInterface.php
1 year ago
StagingDatabaseDtoInterface.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Staging\Interfaces; |
| 4 | |
| 5 | interface StagingDatabaseDtoInterface |
| 6 | { |
| 7 | public function setDatabasePrefix(string $databasePrefix); |
| 8 | |
| 9 | public function getDatabasePrefix(): string; |
| 10 | |
| 11 | public function setExcludedTables(array $excludedTables); |
| 12 | |
| 13 | public function getExcludedTables(): array; |
| 14 | } |
| 15 |