Fix backend code styling

This commit is contained in:
MakingCG
2021-06-29 16:40:19 +00:00
committed by GitHub Actions
parent c52c576f7c
commit 756e0c4ca3
6 changed files with 47 additions and 47 deletions

View File

@@ -24,7 +24,7 @@ class UploadRequest extends FormRequest
public function rules()
{
return [
'filename' => 'required|string',
'filename' => 'required|string',
'folder_id' => 'nullable|uuid',
'file' => ['required', 'file', new DisabledMimetypes],
];