1 | <?php |
||
11 | class OpenStack extends Collector |
||
12 | { |
||
13 | /** |
||
14 | * @var Container |
||
15 | */ |
||
16 | protected $container; |
||
17 | |||
18 | /** |
||
19 | * Path where to search for backup files |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $path; |
||
24 | |||
25 | /** |
||
26 | * OpenStack constructor. |
||
27 | * |
||
28 | * @param \phpbu\App\Backup\Target $target |
||
29 | * @param Container $container |
||
30 | * @param string $path |
||
31 | */ |
||
32 | public function __construct(Target $target, Container $container, string $path) |
||
38 | |||
39 | /** |
||
40 | * Get all created backups. |
||
41 | * |
||
42 | * @return \phpbu\App\Backup\File[] |
||
43 | */ |
||
44 | public function getBackupFiles(): array |
||
65 | } |
||
66 |