| 1 | <?php namespace Arcanesoft\Foundation\Services; |
||
| 11 | class Backups |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Main Functions |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * Get all the statuses. |
||
| 19 | * |
||
| 20 | * @return \Illuminate\Support\Collection |
||
| 21 | */ |
||
| 22 | public static function statuses() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Get a status by index. |
||
| 29 | * |
||
| 30 | * @param int $index |
||
| 31 | * |
||
| 32 | * @return \Spatie\Backup\Tasks\Monitor\BackupDestinationStatus|null |
||
| 33 | */ |
||
| 34 | public static function getStatus($index) |
||
| 38 | } |
||
| 39 |