escpos-php icon indicating copy to clipboard operation
escpos-php copied to clipboard

[DummyPrintConnector] Bad call to implode()

Open thelazy6 opened this issue 1 year ago • 0 comments

line 51: change

return implode($this -> buffer);

to

return implode("\n", $this -> buffer);

otherwise it throws TypeError.

thelazy6 avatar Mar 13 '24 19:03 thelazy6