1 | <?php |
||
8 | class GoogleCloudFsComponent extends AbstractFsComponent |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | public $projectId; |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | public $bucket; |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | public $prefix; |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function init() |
||
38 | |||
39 | /** |
||
40 | * @return GoogleCloudStorageAdapter |
||
41 | */ |
||
42 | protected function initAdapter() |
||
54 | } |
||
55 |