File
2 years ago
Interfaces
2 years ago
Job
2 years ago
Service
2 years ago
Task
2 years ago
Traits
1 year ago
AbstractDto.php
3 years ago
AbstractTaskDto.php
2 years ago
JobDataDto.php
2 years ago
StepsDto.php
2 years ago
TaskResponseDto.php
2 years ago
AbstractTaskDto.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Backup\Dto; |
| 4 | |
| 5 | abstract class AbstractTaskDto extends AbstractDto |
| 6 | { |
| 7 | /** |
| 8 | * @inheritDoc |
| 9 | */ |
| 10 | public function unserialize($serialized) |
| 11 | { |
| 12 | $this->hydrateProperties(unserialize($serialized)); |
| 13 | } |
| 14 | |
| 15 | public function __unserialize($serialized) |
| 16 | { |
| 17 | return $this->hydrateProperties($serialized); |
| 18 | } |
| 19 | } |
| 20 |