Change authorization token to snake case

This commit is contained in:
Pawel Mysior 2018-06-30 10:42:18 +02:00
parent 7838f456f1
commit 4e8ac49883
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ Next, you should create a [service provider](/docs/{{version}}/providers) such a
{
Storage::extend('dropbox', function ($app, $config) {
$client = new DropboxClient(
$config['authorizationToken']
$config['authorization_token']
);
return new Filesystem(new DropboxAdapter($client));