From 6b555ff4d1483afc618cea27e19147a8730a3440 Mon Sep 17 00:00:00 2001 From: Freek Date: Fri, 6 Mar 2015 12:14:30 +0100 Subject: [PATCH] Use full facade namespace Use full facade namespace to fix issue #7 --- src/Commands/BackupCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/BackupCommand.php b/src/Commands/BackupCommand.php index 3126ca6b..86259be0 100644 --- a/src/Commands/BackupCommand.php +++ b/src/Commands/BackupCommand.php @@ -3,7 +3,7 @@ use Illuminate\Console\Command; use Spatie\Backup\BackupHandlers\Database\DatabaseBackupHandler; use Spatie\Backup\BackupHandlers\Files\FilesBackupHandler; -use Storage; +use Illuminate\Support\Facades\Storage; use ZipArchive; class BackupCommand extends Command