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 +}