laravel-pointable
laravel-pointable copied to clipboard
$data is always null
Hi,
there is an error in your package on line 96 Pointable.php trait.
return (new Transaction())->addTransaction($this, $amount, $message, $data = null);
This way $data is always null. It shoud be
return (new Transaction())->addTransaction($this, $amount, $message, $data);
Regards, Vladimir