13 lines
253 B
PHP
13 lines
253 B
PHP
|
<?php
|
||
|
|
||
|
namespace Negundo\Client;
|
||
|
|
||
|
class NativeHandler extends Handler {
|
||
|
|
||
|
public function handleException(\Throwable $ex): array
|
||
|
{
|
||
|
return $this->exceptionHandler->extractExceptionData($ex, $_SERVER, $_POST);
|
||
|
}
|
||
|
|
||
|
}
|