| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 67 | protected function prepareAdapter() |
||
| 68 | { |
||
| 69 | return new \League\Flysystem\Azure\AzureAdapter( |
||
| 70 | ServicesBuilder::getInstance()->createBlobService(sprintf( |
||
| 71 | 'DefaultEndpointsProtocol=https;AccountName=%s;AccountKey=%s', |
||
| 72 | base64_encode($this->accountName), |
||
| 73 | base64_encode($this->accountKey) |
||
| 74 | )), |
||
| 75 | $this->container |
||
| 76 | ); |
||
| 78 | } |