Completed
Push — master ( 17a3aa...552418 )
by Vaibhavraj
02:34 queued 01:13
created
src/Commands/CreateKeypair.php 1 patch
Unused Use Statements   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -3,15 +3,15 @@
 block discarded – undo
3 3
 namespace Vrajroham\LaravelBitpay\Commands;
4 4
 
5 5
 use Bitpay\Bitpay;
6
-use Bitpay\SinKey;
7
-use Bitpay\PublicKey;
8
-use Bitpay\PrivateKey;
6
+use Bitpay\Client\Adapter\CurlAdapter;
7
+use Bitpay\Client\BitpayException;
8
+use Bitpay\Client\Client as BitpayClient;
9 9
 use Bitpay\Network\Livenet;
10 10
 use Bitpay\Network\Testnet;
11
+use Bitpay\PrivateKey;
12
+use Bitpay\PublicKey;
13
+use Bitpay\SinKey;
11 14
 use Illuminate\Console\Command;
12
-use Bitpay\Client\BitpayException;
13
-use Bitpay\Client\Adapter\CurlAdapter;
14
-use Bitpay\Client\Client as BitpayClient;
15 15
 use Vrajroham\LaravelBitpay\Traits\CreateKeypairTrait;
16 16
 
17 17
 class CreateKeypair extends Command
Please login to merge, or discard this patch.
src/Traits/LaravelBitpayTrait.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Vrajroham\LaravelBitpay\Traits;
4 4
 
5
-use Bitpay\Token;
6
-use Bitpay\Network\Livenet;
7
-use Bitpay\Network\Testnet;
8 5
 use Bitpay\Client\Adapter\CurlAdapter;
9 6
 use Bitpay\Client\Client as BitpayClient;
7
+use Bitpay\Network\Livenet;
8
+use Bitpay\Network\Testnet;
9
+use Bitpay\Token;
10 10
 use Vrajroham\LaravelBitpay\Exceptions\InvalidConfigurationException;
11 11
 
12 12
 trait LaravelBitpayTrait
Please login to merge, or discard this patch.