Is now capable of updating transactions over the API.

This commit is contained in:
James Cole
2019-04-06 08:10:50 +02:00
parent b692cccdfb
commit c519b4d0df
36 changed files with 1840 additions and 709 deletions

View File

@@ -170,6 +170,9 @@ class Request extends FormRequest
if (null === $string) {
return null;
}
if ('' === $string) {
return null;
}
return (int)$string;
}