Completed
Pull Request — master (#61)
by Roberto
03:39
created
src/Graphics/Graphics.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@
 block discarded – undo
13 13
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
14 14
  */
15 15
 
16
-use Posprint\Graphics\Basic;
17 16
 use Endroid\QrCode\QrCode;
18
-use RuntimeException;
19 17
 use InvalidArgumentException;
18
+use Posprint\Graphics\Basic;
19
+use RuntimeException;
20 20
 
21 21
 class Graphics extends Basic
22 22
 {
Please login to merge, or discard this patch.
src/Printers/DefaultPrinter.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
25 25
  */
26 26
 
27
-use Posprint\Connectors\ConnectorInterface;
27
+use InvalidArgumentException;
28 28
 use Posprint\Connectors\Buffer;
29
+use Posprint\Connectors\ConnectorInterface;
29 30
 use Posprint\Graphics\Graphics;
30 31
 use RuntimeException;
31
-use InvalidArgumentException;
32 32
 
33 33
 abstract class DefaultPrinter implements PrinterInterface
34 34
 {
Please login to merge, or discard this patch.
src/Connectors/File.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
  * @link      http://github.com/nfephp-org/posprint for the canonical source repository
15 15
  */
16 16
 
17
+use InvalidArgumentException;
17 18
 use Posprint\Connectors\ConnectorInterface;
18 19
 use Posprint\Connectors\File;
19 20
 use RuntimeException;
20
-use InvalidArgumentException;
21 21
 
22 22
 class Network extends File implements ConnectorInterface
23 23
 {
Please login to merge, or discard this patch.