Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | |||
17 | namespace Phauthentic\Infrastructure\Storage\Factories; |
||
18 | |||
19 | use League\Flysystem\AdapterInterface; |
||
20 | use League\Flysystem\AzureBlobStorage\AzureBlobStorageAdapter; |
||
21 | use MicrosoftAzure\Storage\Common\ServicesBuilder; |
||
22 | |||
23 | /** |
||
24 | * AzureFactory |
||
25 | */ |
||
26 | class AzureFactory extends AbstractFactory |
||
27 | { |
||
28 | protected string $alias = 'azure'; |
||
29 | protected ?string $package = 'league/flysystem-azure-blob-storage'; |
||
55 |