laravel-pointable icon indicating copy to clipboard operation
laravel-pointable copied to clipboard

$data is always null

Open schrink opened this issue 7 years ago • 0 comments

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

schrink avatar Nov 04 '17 21:11 schrink