Explorar el Código

ParamExceptionハンドルを修正

develop
sosuke.iwabuchi hace 1 año
padre
commit
c7cb8bc6a0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/Http/Controllers/Web/WebController.php

+ 1
- 1
app/Http/Controllers/Web/WebController.php Ver fichero

@@ -215,7 +215,7 @@ abstract class WebController extends BaseController
throw $e;
} catch (ParamException $e) {
$this->transaction->rollBack();
throw $this->validateErrorResponse([$e->target => $e->getMessage()]);
return $this->validateErrorResponse([$e->target => $e->getMessage()]);
} catch (Exception $e) {
$this->transaction->rollBack();
logs()->error([


Cargando…
Cancelar
Guardar