You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Estou tendo um problema no tratamento de erros efetuado pela classe Error [vendor\moip\moip-sdk-php\src\Exceptions\Error.php line 91].
As propriedades do json para criação do array não estão sendo validadas. Foi necessário efetuar um alteração manual:
DE:
if (!empty($error_obj->errors)) {
foreach ($error_obj->errors as $error) {
$errors[] = new self($error->code, $error->path, $error->description);
}
} elseif (!empty($error_obj->error)) {
$errors[] = new self('', '', $error_obj->error);
}
Olá, bom dia!
Estou tendo um problema no tratamento de erros efetuado pela classe Error [vendor\moip\moip-sdk-php\src\Exceptions\Error.php line 91].
As propriedades do json para criação do array não estão sendo validadas. Foi necessário efetuar um alteração manual:
DE:
if (!empty($error_obj->errors)) {
foreach ($error_obj->errors as $error) {
$errors[] = new self($error->code, $error->path, $error->description);
}
} elseif (!empty($error_obj->error)) {
$errors[] = new self('', '', $error_obj->error);
}
PARA:
if (!empty($error_obj->errors)) {
foreach ($error_obj->errors as $error) {
$code = $error->code ?? null;
$path = $error->path ?? null;
$description = $error->description ?? null;
$errors[] = new self($code, $path, $description);
}
} elseif (!empty($error_obj->error)) {
$errors[] = new self('', '', $error_obj->error);
}
Favor acompanhar. Abraços!!
The text was updated successfully, but these errors were encountered: