File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Illuminate/Foundation Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
33namespace Illuminate \Foundation ;
44
5+ use Exception ;
56use Illuminate \Filesystem \Filesystem ;
6- use Illuminate \Contracts \Filesystem \FileNotFoundException ;
77use Illuminate \Contracts \Foundation \Application as ApplicationContract ;
88
99class ProviderRepository
@@ -181,12 +181,12 @@ protected function freshManifest(array $providers)
181181 *
182182 * @param array $manifest
183183 * @return array
184- * @throws FileNotFoundException
184+ * @throws Exception
185185 */
186186 public function writeManifest ($ manifest )
187187 {
188188 if (! is_writable (dirname ($ this ->manifestPath ))) {
189- throw new FileNotFoundException ('The bootstrap/cache directory must be present and writable. ' );
189+ throw new Exception ('The bootstrap/cache directory must be present and writable. ' );
190190 }
191191
192192 $ this ->files ->put (
You can’t perform that action at this time.
0 commit comments