Skip to content

Commit

Permalink
filesystem.md: Rename Disk to Storage
Browse files Browse the repository at this point in the history
  • Loading branch information
svrnm committed Feb 25, 2015
1 parent 8ec358b commit fefa18d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ The first argument of the `extend` method is the name of the driver and the seco

<?php namespace App\Providers;

use Disk;
use Storage;
use League\Flysystem\Filesystem;
use Dropbox\Client as DropboxClient;
use League\Flysystem\Dropbox\DropboxAdapter;
Expand All @@ -132,7 +132,7 @@ The first argument of the `extend` method is the name of the driver and the seco

public function boot()
{
Disk::extend('dropbox', function($app, $config)
Storage::extend('dropbox', function($app, $config)
{
$client = new DropboxClient($config['accessToken'], $config['clientIdentifier']);

Expand Down

0 comments on commit fefa18d

Please sign in to comment.