Skip to content

Commit 9d197a7

Browse files
committed
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
1 parent e720a52 commit 9d197a7

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)