Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | * @author Florian Krämer |
||
11 | * @link https://github.com/Phauthentic |
||
12 | * @license https://opensource.org/licenses/MIT MIT License |
||
13 | */ |
||
14 | |||
15 | declare(strict_types=1); |
||
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 |