| Server IP : 46.62.235.243 / Your IP : 216.73.216.217 Web Server : Apache/2.4.58 (Ubuntu) System : Linux Linkabili3Dicembre 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/linkabili/app/Exceptions/ |
Upload File : |
<?php
namespace App\Exceptions;
use Exception;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Mail;
use Symfony\Component\Debug\Exception\FlattenException;
use Symfony\Component\Debug\ExceptionHandler as SymfonyExceptionHandler;
use UnexpectedValueException;
use Illuminate\Support\Facades\Log;
use Symfony\Component\HttpFoundation\Exception\SuspiciousOperationException;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array
*/
protected $dontFlash = [
'password',
'password_confirmation',
];
public function report(Exception $exception) {
$exceptionAllowed = [
"Symfony\Component\HttpFoundation\Exception\SuspiciousOperationException"
];
if ($this->shouldReport($exception) &&
!method_exists($exception, 'report') &&
!in_array(get_class($exception), $exceptionAllowed)
&& env('APP_ENV') != 'local'
) {
Log::channel('slack_error')->error(
$exception->getMessage(),
array_merge($this->context(), ['exception' => $exception])
);
}
parent::report($exception);
}
public function render($request, Exception $exception) {
return parent::render($request, $exception);
}
}