for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Xervice\Service\Handler\Handler;
use Symfony\Component\Debug\ExceptionHandler as SymfonyExceptionHandler;
use Xervice\Service\Handler\HandlerInterface;
class ExceptionHandler implements HandlerInterface
{
/**
* @param bool $isDebug
*/
public function handle(bool $isDebug): void
SymfonyExceptionHandler::register($isDebug);
}