| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | protected function initAdapter() |
||
| 50 | { |
||
| 51 | return new AzureAdapter( |
||
| 52 | ServicesBuilder::getInstance()->createBlobService(sprintf( |
||
| 53 | 'DefaultEndpointsProtocol=https;AccountName=%s;AccountKey=%s', |
||
| 54 | base64_encode($this->accountName), |
||
| 55 | base64_encode($this->accountKey) |
||
| 56 | )), |
||
| 57 | $this->container |
||
| 58 | ); |
||
| 59 | } |
||
| 60 | } |
||
| 61 |