mike42 / escpos-php

PHP library for printing to ESC/POS-compatible thermal and impact printers
Other
2.55k stars 863 forks source link

[DummyPrintConnector] Bad call to implode() #1314

Open thelazy6 opened 6 months ago

thelazy6 commented 6 months ago

line 51: change

return implode($this -> buffer);

to

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

otherwise it throws TypeError.