for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Xervice\ExceptionHandler;
use Xervice\Core\Facade\AbstractFacade;
/**
* @method \Xervice\ExceptionHandler\ExceptionHandlerFactory getFactory()
* @method \Xervice\ExceptionHandler\ExceptionHandlerConfig getConfig()
* @method \Xervice\ExceptionHandler\ExceptionHandlerClient getClient()
*/
class ExceptionHandlerFacade extends AbstractFacade
{
* @param \Exception $exception
*
public function handleException(\Exception $exception): void
$this->getFactory()->createExceptionHandler()->handleException($exception);
}