exception
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
namespace App\Http\Controllers\Base;
|
||||
|
||||
use App\Const\Responses;
|
||||
use App\Service\ReplyService;
|
||||
use Illuminate\Routing\Controller;
|
||||
|
||||
class BaseController extends Controller
|
||||
@ -12,28 +13,24 @@ class BaseController extends Controller
|
||||
function __call($method, $parameters)
|
||||
{
|
||||
if (isset($this->validateMethodParams[$method])) {
|
||||
$a = request()->validate($this->validateMethodParams[$method]);
|
||||
request()->validate($this->validateMethodParams[$method]);
|
||||
}
|
||||
parent::__call($method, $parameters);
|
||||
}
|
||||
|
||||
function reply($code, $msg, $data = []): \Illuminate\Http\JsonResponse
|
||||
{
|
||||
return response()->json([
|
||||
'code' => $code,
|
||||
'msg' => $msg,
|
||||
'data' => $data,
|
||||
]);
|
||||
return ReplyService::reply($code, $msg, $data);
|
||||
}
|
||||
|
||||
function success($data = []): \Illuminate\Http\JsonResponse
|
||||
{
|
||||
return $this->reply(Responses::CODE_SUCCESS, 'success', $data);
|
||||
return ReplyService::success($data);
|
||||
}
|
||||
|
||||
function error($msg = 'error', $data = []): \Illuminate\Http\JsonResponse
|
||||
{
|
||||
return $this->reply(Responses::CODE_ERROR, $msg, $data);
|
||||
ReplyService::error($msg, $data);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user