Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9d197a7

Browse filesBrowse 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
Copy full SHA for 9d197a7

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎src/Illuminate/Workbench/Starter.php

Copy file name to clipboardExpand all lines: src/Illuminate/Workbench/Starter.php
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.