AdvanceStagingOptionsInterface.php
6 months ago
StagingDatabaseDtoInterface.php
1 year ago
StagingNetworkDtoInterface.php
4 months ago
StagingOperationDtoInterface.php
7 months ago
StagingSiteDtoInterface.php
1 day ago
StagingSiteDtoInterface.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Staging\Interfaces; |
| 4 | |
| 5 | use WPStaging\Staging\Dto\StagingSiteDto; |
| 6 | |
| 7 | interface StagingSiteDtoInterface |
| 8 | { |
| 9 | public function setCloneId(string $cloneId); |
| 10 | |
| 11 | public function getCloneId(): string; |
| 12 | |
| 13 | |
| 14 | |
| 15 | |
| 16 | |
| 17 | public function setStagingSite($stagingSite); |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
| 22 | public function getStagingSite(); |
| 23 | } |
| 24 |