negundo-client/src/NativeHandler.php

13 lines
253 B
PHP
Raw Normal View History

2023-03-29 13:52:15 +00:00
<?php
namespace Negundo\Client;
class NativeHandler extends Handler {
public function handleException(\Throwable $ex): array
{
return $this->exceptionHandler->extractExceptionData($ex, $_SERVER, $_POST);
}
}