Completed
Push — master ( 85cb44...fb8009 )
by Roberto
19:48 queued 09:48
created
src/Connectors/File.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,9 +15,9 @@
 block discarded – undo
15 15
  * @link      http://github.com/nfephp-org/posprint for the canonical source repository
16 16
  */
17 17
 
18
+use InvalidArgumentException;
18 19
 use Posprint\Connectors\ConnectorInterface;
19 20
 use RuntimeException;
20
-use InvalidArgumentException;
21 21
 
22 22
 class File implements ConnectorInterface
23 23
 {
Please login to merge, or discard this patch.
src/Printers/DefaultPrinter.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,13 +24,13 @@
 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\PrinterInterface;
28
-use Posprint\Connectors\ConnectorInterface;
27
+use InvalidArgumentException;
29 28
 use Posprint\Connectors\Buffer;
29
+use Posprint\Connectors\ConnectorInterface;
30 30
 use Posprint\Graphics\Graphics;
31 31
 use Posprint\Printers\Barcodes\Barcode1DAnalysis;
32
+use Posprint\Printers\PrinterInterface;
32 33
 use RuntimeException;
33
-use InvalidArgumentException;
34 34
 
35 35
 abstract class DefaultPrinter implements PrinterInterface
36 36
 {
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
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
  * @link       http://github.com/nfephp-org/posprint for the canonical source repository
15 15
  */
16 16
 
17
+use Posprint\Graphics\Graphics;
17 18
 use Posprint\Printers\DefaultPrinter;
18 19
 use Posprint\Printers\PrinterInterface;
19
-use Posprint\Graphics\Graphics;
20 20
 
21 21
 final class Daruma extends DefaultPrinter implements PrinterInterface
22 22
 {
Please login to merge, or discard this patch.
src/DanfcePos.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
  * em caso de contingência criar duas vias consumidor e estabelecimento
10 10
  */
11 11
 
12
-use Posprint\Printers\PrinterInterface;
13 12
 use InvalidArgumentException;
13
+use Posprint\Printers\PrinterInterface;
14 14
 
15 15
 class DanfcePos
16 16
 {
Please login to merge, or discard this patch.
src/Graphics/Graphics.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,12 +13,11 @@
 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
-use Endroid\QrCode\ErrorCorrectionLevel;
18
-use Endroid\QrCode\Writer\PngWriter;
19 16
 use Endroid\QrCode\QrCode;
20
-use RuntimeException;
17
+use Endroid\QrCode\Writer\PngWriter;
21 18
 use InvalidArgumentException;
19
+use Posprint\Graphics\Basic;
20
+use RuntimeException;
22 21
 
23 22
 class Graphics extends Basic
24 23
 {
Please login to merge, or discard this patch.