From 9d197a7d50b6a6356b98fb00b44b22b0e1dfcb92 Mon Sep 17 00:00:00 2001 From: flaviozantut Date: Fri, 11 Jan 2013 10:22:46 -0200 Subject: [PATCH] fix 'Illuminate\Filesystem' load Fix Fatal error on Class 'Illuminate\Filesystem' not found in /vendor/laravel/framework/src/Illuminate/Workbench/Starter.php on line 16 --- src/Illuminate/Workbench/Starter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Illuminate/Workbench/Starter.php b/src/Illuminate/Workbench/Starter.php index a5594c7666be..ea3396362d94 100644 --- a/src/Illuminate/Workbench/Starter.php +++ b/src/Illuminate/Workbench/Starter.php @@ -13,7 +13,7 @@ public static function start($path, $finder = null, $files = null) { $finder = $finder ?: new \Symfony\Component\Finder\Finder; - $files = $files ?: new \Illuminate\Filesystem; + $files = $files ?: new \Illuminate\Filesystem\Filesystem; // We will use the finder to locate all "autoload.php" files in the workbench // directory, then we will include them each so that they are able to load @@ -26,4 +26,4 @@ public static function start($path, $finder = null, $files = null) } } -} \ No newline at end of file +}