at the Cubits/Cubits.php file at methods
getChannel, createChannel and updateChannel you have this code
$returnValue->transactions = $response->transactions;
But when there are no transactions and $response->transactions === NULL, php generate an Notice.
i suggest you to improve that code like this
$returnValue->transactions = isset($response->transactions) ? $response->transactions : [];
at the Cubits/Cubits.php file at methods
getChannel, createChannel and updateChannel you have this code
But when there are no transactions and $response->transactions === NULL, php generate an Notice.
i suggest you to improve that code like this