Skip to content

Commit

Permalink
fixed implode arguments & .gitignore for phpstorm
Browse files Browse the repository at this point in the history
  • Loading branch information
iz65535 committed Sep 11, 2020
1 parent 32d6c83 commit 6a6fa15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -3,6 +3,9 @@
.project
.buildpath

# phpstorm files
.idea

# doxygen files
doc/html
doc/latex
Expand Down
2 changes: 1 addition & 1 deletion src/Mike42/Escpos/PrintConnectors/DummyPrintConnector.php
Expand Up @@ -62,7 +62,7 @@ public function finalize()
*/
public function getData()
{
return implode($this -> buffer);
return implode('', $this -> buffer);
}

/**
Expand Down

0 comments on commit 6a6fa15

Please sign in to comment.