Skip to content

Commit 9118176

Browse files
committed
Fixed typo in environment variable names.
1 parent 568dd67 commit 9118176

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Azure file storage
2-
AZURE_FLE_STORAGE_ACCOUNT="youraccountname"
3-
AZURE_FLE_STORAGE_ACCESS_KEY="very-long-access-key-here"
4-
AZURE_FLE_STORAGE_SHARE_NAME="name-files-are-shared-to"
2+
AZURE_FILE_STORAGE_ACCOUNT="youraccountname"
3+
AZURE_FILE_STORAGE_ACCESS_KEY="very-long-access-key-here"
4+
AZURE_FILE_STORAGE_SHARE_NAME="name-files-are-shared-to"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ Add the following to your `config/filesystems.php`:
4444
'driver' => 'azure-file-storage',
4545

4646
// Account credentials.
47-
'storageAccount' => env('AZURE_FLE_STORAGE_ACCOUNT'),
48-
'storageAccessKey' => env('AZURE_FLE_STORAGE_ACCESS_KEY'),
47+
'storageAccount' => env('AZURE_FILE_STORAGE_ACCOUNT'),
48+
'storageAccessKey' => env('AZURE_FILE_STORAGE_ACCESS_KEY'),
4949

5050
// The file share.
5151
// This driver supports one file share at a time (you cannot
5252
// copy or move files between shares natively).
53-
'fileShareName' => env('AZURE_FLE_STORAGE_SHARE_NAME'),
53+
'fileShareName' => env('AZURE_FILE_STORAGE_SHARE_NAME'),
5454

5555
// Optional settings
5656
'disableRecursiveDelete' => false,

tests/ServiceProviderTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ protected function getEnvironmentSetUp($app)
5050

5151
$app['config']->set('filesystems.disks.azure-files', [
5252
'driver' => ServiceProvider::DRIVER_NAME,
53-
'storageAccount' => env('AZURE_FLE_STORAGE_ACCOUNT'),
54-
'storageAccessKey' => env('AZURE_FLE_STORAGE_ACCESS_KEY'),
55-
'fileShareName' => env('AZURE_FLE_STORAGE_SHARE_NAME'),
53+
'storageAccount' => env('AZURE_FILE_STORAGE_ACCOUNT'),
54+
'storageAccessKey' => env('AZURE_FILE_STORAGE_ACCESS_KEY'),
55+
'fileShareName' => env('AZURE_FILE_STORAGE_SHARE_NAME'),
5656
'disableRecursiveDelete' => false,
5757
'driverOptions' => [],
5858
]);

0 commit comments

Comments
 (0)