chore: update dependencies for Laravel 9 (#6098)

This commit is contained in:
Alexis Saettler
2022-08-12 18:42:35 +02:00
committed by GitHub
parent 6a7f49fd90
commit 78cd01b2b5
78 changed files with 1889 additions and 2286 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ use Illuminate\Support\Carbon;
use App\Models\Contact\Contact;
use App\Models\Contact\Document;
use Illuminate\Support\Facades\Response;
use League\Flysystem\FileNotFoundException;
use League\Flysystem\FilesystemException;
class StorageController extends Controller
{
@@ -45,7 +45,7 @@ class StorageController extends Controller
}
return $disk->response($file, $filename, $headers);
} catch (FileNotFoundException $e) {
} catch (FilesystemException $e) {
abort(404);
}
}