We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3fb7c68 + fefa18d commit 4dbf863Copy full SHA for 4dbf863
filesystem.md
@@ -123,7 +123,7 @@ The first argument of the `extend` method is the name of the driver and the seco
123
124
<?php namespace App\Providers;
125
126
- use Disk;
+ use Storage;
127
use League\Flysystem\Filesystem;
128
use Dropbox\Client as DropboxClient;
129
use League\Flysystem\Dropbox\DropboxAdapter;
@@ -132,7 +132,7 @@ The first argument of the `extend` method is the name of the driver and the seco
132
133
public function boot()
134
{
135
- Disk::extend('dropbox', function($app, $config)
+ Storage::extend('dropbox', function($app, $config)
136
137
$client = new DropboxClient($config['accessToken'], $config['clientIdentifier']);
138
0 commit comments