diff options
author | Marvin Borner | 2018-07-08 17:14:26 +0200 |
---|---|---|
committer | Marvin Borner | 2018-07-08 17:14:26 +0200 |
commit | 2b7e31ffa79f508453bc5c759a7511e476cbbe96 (patch) | |
tree | 209ea7974323b0b9270090f4f993ffb1a77085bd /app/Exceptions | |
parent | 8ba38dcf7fbd96a6f13639057e045eba114e2f39 (diff) |
Added basic blockchain-like hashing for verified data
Diffstat (limited to 'app/Exceptions')
-rw-r--r-- | app/Exceptions/Handler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 0e458d9..987fc82 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -52,7 +52,7 @@ class Handler extends ExceptionHandler $statusCode = $exception->getStatusCode(); switch ($statusCode) { case '404': - $codeMessage = 'Page could not be found'; + $codeMessage = 'Page could not be found.'; } $errorMessage = $exception->getMessage() == '' ? ($codeMessage ? $codeMessage : 'An unknown error occurred.') : $exception->getMessage(); |