Upgrade to Laravel 8

This commit is contained in:
Bubka
2021-12-02 13:15:53 +01:00
parent 65da59db64
commit 20856d62c6
86 changed files with 1854 additions and 911 deletions

View File

@ -2,7 +2,7 @@
namespace App\Api\v1\Controllers;
use App\TwoFAccount;
use App\Models\TwoFAccount;
use App\Services\QrCodeService;
use App\Services\TwoFAccountService;
use App\Api\v1\Requests\QrCodeDecodeRequest;
@ -39,7 +39,7 @@ class QrCodeController extends Controller
/**
* Show a QR code image
*
* @param App\TwoFAccount $twofaccount
* @param App\Models\TwoFAccount $twofaccount
* @return \Illuminate\Http\JsonResponse
*/
public function show(TwoFAccount $twofaccount)