Skip to content

Commit

Permalink
Apply fixes from StyleCI (#1262)
Browse files Browse the repository at this point in the history
  • Loading branch information
austintoddj authored Mar 9, 2023
1 parent 89c101d commit 70a46aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Http/Controllers/ImageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function destroy()

$path = vsprintf('%s/%s', [
Canvas::baseStoragePathForImages(),
$file['basename']
$file['basename'],
]);

Storage::disk(config('canvas.storage_disk'))->delete($path);
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Requests/StoreImageRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function rules()
'png',
'jpg',
'gif',
'svg'
'svg',
])->max(config('canvas.upload_filesize')),
],
];
Expand Down

0 comments on commit 70a46aa

Please sign in to comment.