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
On the process API, the following error can happen :
ErrorException:
Warning: Undefined array key "identifier"
at vendor/sandwave-io/realtimeregister-php/src/Domain/Process.php:150
This happens when we try to list all processes using :
$realtimeRegister->processes->list();
It seems that RTR can return processes without the identifier key. When this happens, it can throw an error.
I modified the ProcessApi.php file to debug this, and I found out that the processes without the identifier keys are the ones related to the action of adding credit to the account.
Hello,
On the process API, the following error can happen :
This happens when we try to list all processes using :
It seems that RTR can return processes without the
identifier
key. When this happens, it can throw an error.I modified the
ProcessApi.php
file to debug this, and I found out that the processes without the identifier keys are the ones related to the action of adding credit to the account.EDIT: There is some other actions that create a process without an identifier, for instance :
You can find those using the
identifier
+does not have a value
filter.Edit 2 : For now, I ignore/bypass the error using :
The text was updated successfully, but these errors were encountered: