Skip to content

Commit

Permalink
use mixed doc block instead
Browse files Browse the repository at this point in the history
  • Loading branch information
nivv committed Oct 21, 2021
1 parent 46ea751 commit 9f240eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/Api/Fabriq/DownloadsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function index(Request $request) : BinaryFileResponse
* @param integer $id
* @return mixed BinaryFileResponse | StreamedResponse
*/
public function show(Request $request, int $id) : mixed
public function show(Request $request, int $id)
{
$type = self::DOWNLOADABLE_TYPES[$request->type];
$item = $type::where('id', $id)->firstOrFail();
Expand Down

0 comments on commit 9f240eb

Please sign in to comment.