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
StagingNetworkDtoInterface.php
23 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Staging\Interfaces; |
| 4 | |
| 5 | interface StagingNetworkDtoInterface |
| 6 | { |
| 7 | public function setIsStagingNetwork(bool $isStagingNetwork); |
| 8 | |
| 9 | public function getIsStagingNetwork(): bool; |
| 10 | |
| 11 | public function setStagingNetworkDomain(string $stagingNetworkDomain); |
| 12 | |
| 13 | public function getStagingNetworkDomain(): string; |
| 14 | |
| 15 | public function setStagingNetworkPath(string $stagingNetworkPath); |
| 16 | |
| 17 | public function getStagingNetworkPath(): string; |
| 18 | |
| 19 | public function setSourceBlogId(int $sourceBlogId); |
| 20 | |
| 21 | public function getSourceBlogId(): int; |
| 22 | } |
| 23 |