Passed
Branch master (a30936)
by Roberto
06:02
created
src/Connectors/Cups.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
  */
15 15
 
16 16
 use Posprint\Connectors\ConnectorInterface;
17
-use Exception;
18 17
 
19 18
 class Cups implements ConnectorInterface
20 19
 {
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
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
16 16
  */
17 17
 
18
-use Posprint\Connectors\ConnectorInterface;
19 18
 use Exception;
19
+use Posprint\Connectors\ConnectorInterface;
20 20
 
21 21
 class File implements ConnectorInterface
22 22
 {
Please login to merge, or discard this patch.
src/Connectors/Lpr.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
14 14
  */
15 15
 
16
-use Posprint\Connectors\ConnectorInterface;
17 16
 use Exception;
17
+use Posprint\Connectors\ConnectorInterface;
18 18
 
19 19
 class Lpr implements ConnectorInterface
20 20
 {
Please login to merge, or discard this patch.
src/Connectors/Network.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
14 14
  */
15 15
 
16
-use Posprint\Connectors\ConnectorInterface;
17 16
 use Exception;
17
+use Posprint\Connectors\ConnectorInterface;
18 18
 
19 19
 class Network implements ConnectorInterface
20 20
 {
Please login to merge, or discard this patch.
src/Connectors/Serial.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
14 14
  */
15 15
 
16
-use Posprint\Connectors\ConnectorInterface;
17 16
 use PhpSerial;
17
+use Posprint\Connectors\ConnectorInterface;
18 18
 
19 19
 class Serial implements ConnectorInterface
20 20
 {
Please login to merge, or discard this patch.
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/Daruma.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
25 25
  */
26 26
 
27
-use Posprint\Printers\DefaultPrinter;
27
+use Posprint\Printers\DefaultPrinter;
28 28
 use Posprint\Printers\PrinterInterface;
29 29
 
30 30
 class Daruma extends DefaultPrinter implements PrinterInterface
Please login to merge, or discard this patch.
src/Printers/DefaultPrinter.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,10 +23,9 @@
 block discarded – undo
23 23
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
24 24
  */
25 25
 
26
-use Posprint\Connectors\ConnectorInterface;
27 26
 use Posprint\Connectors\Buffer;
27
+use Posprint\Connectors\ConnectorInterface;
28 28
 use Posprint\Graphics\Graphics;
29
-use Exception;
30 29
 
31 30
 abstract class DefaultPrinter implements PrinterInterface
32 31
 {
Please login to merge, or discard this patch.
src/Printers/Elgin.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
21 21
  */
22 22
 
23
-use Posprint\Printers\DefaultPrinter;
23
+use Posprint\Printers\DefaultPrinter;
24 24
 use Posprint\Printers\PrinterInterface;
25 25
 
26 26
 class Elgin extends DefaultPrinter implements PrinterInterface
Please login to merge, or discard this patch.