Skip to content

Commit afbb5e8

Browse files
committed
Merge pull request #2 from flaviozantut/master
Fix Fatal error on Class 'Illuminate\Filesystem' load
2 parents e720a52 + 9d197a7 commit afbb5e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Workbench/Starter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public static function start($path, $finder = null, $files = null)
1313
{
1414
$finder = $finder ?: new \Symfony\Component\Finder\Finder;
1515

16-
$files = $files ?: new \Illuminate\Filesystem;
16+
$files = $files ?: new \Illuminate\Filesystem\Filesystem;
1717

1818
// We will use the finder to locate all "autoload.php" files in the workbench
1919
// 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)
2626
}
2727
}
2828

29-
}
29+
}

0 commit comments

Comments
 (0)