1 | <?php |
||
16 | class AzureFsComponent extends AbstractFsComponent |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | public $accountName; |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $accountKey; |
||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | public $container; |
||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | public function init() |
||
46 | /** |
||
47 | * @return AzureAdapter |
||
48 | */ |
||
49 | protected function initAdapter() |
||
60 | } |
||
61 |