Completed
Branch master (cc24e6)
by Phil™
03:41
created
src/API.php 1 patch
Unused Use Statements   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace FLAIRUK\GoodTillSystem;
4 4
 
5
-use Illuminate\Support\Facades\Http;
6
-use FLAIRUK\GoodTillSystem\Authorize;
7
-use Illuminate\Support\Facades\Config;
8 5
 use FLAIRUK\GoodTillSystem\RESTInterface;
9 6
 use Illuminate\Http\Client\PendingRequest;
7
+use Illuminate\Support\Facades\Http;
10 8
 
11 9
 class API implements RESTInterface {
12 10
 
Please login to merge, or discard this patch.
src/Commands/SetupCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,6 @@
 block discarded – undo
6 6
 use Illuminate\Filesystem\Filesystem;
7 7
 use Symfony\Component\Console\Input\InputOption;
8 8
 use Symfony\Component\Process\Process;
9
-use TCG\Voyager\Providers\VoyagerDummyServiceProvider;
10
-use TCG\Voyager\Traits\Seedable;
11 9
 use TCG\Voyager\VoyagerServiceProvider;
12 10
 
13 11
 class SetupCommand extends Command
Please login to merge, or discard this patch.
src/GoodTillSystem.php 1 patch
Unused Use Statements   +10 added lines, -13 removed lines patch added patch discarded remove patch
@@ -2,25 +2,22 @@
 block discarded – undo
2 2
 
3 3
 namespace FLAIRUK\GoodTillSystem;
4 4
 
5
-use Illuminate\Support\Facades\Http;
6
-use Illuminate\Support\Facades\Config;
7 5
 use FLAIRUK\GoodTillSystem\RESTInterface;
8 6
 
9
-use FLAIRUK\GoodTillSystem\Models\Sale;
10
-use FLAIRUK\GoodTillSystem\Models\Staff;
11 7
 use FLAIRUK\GoodTillSystem\Models\Brand;
12
-use FLAIRUK\GoodTillSystem\Models\Report;
8
+use FLAIRUK\GoodTillSystem\Models\Category;
9
+use FLAIRUK\GoodTillSystem\Models\Customer;
10
+use FLAIRUK\GoodTillSystem\Models\ExternalSale;
11
+use FLAIRUK\GoodTillSystem\Models\Loyalty;
13 12
 use FLAIRUK\GoodTillSystem\Models\Outlet;
14
-use FLAIRUK\GoodTillSystem\Models\VATRate;
15
-use FLAIRUK\GoodTillSystem\Models\Voucher;
13
+use FLAIRUK\GoodTillSystem\Models\PaymentType;
16 14
 use FLAIRUK\GoodTillSystem\Models\Product;
17
-use FLAIRUK\GoodTillSystem\Models\Loyalty;
18
-use FLAIRUK\GoodTillSystem\Models\Customer;
19 15
 use FLAIRUK\GoodTillSystem\Models\Register;
20
-use FLAIRUK\GoodTillSystem\Models\Category;
21
-use FLAIRUK\GoodTillSystem\Models\StaffClock;
22
-use FLAIRUK\GoodTillSystem\Models\PaymentType;
23
-use FLAIRUK\GoodTillSystem\Models\ExternalSale;
16
+use FLAIRUK\GoodTillSystem\Models\Report;
17
+use FLAIRUK\GoodTillSystem\Models\Sale;
18
+use FLAIRUK\GoodTillSystem\Models\Staff;
19
+use FLAIRUK\GoodTillSystem\Models\VATRate;
20
+use FLAIRUK\GoodTillSystem\Models\Voucher;
24 21
 
25 22
 class GoodTillSystem extends Authorize {
26 23
         
Please login to merge, or discard this patch.
src/GoodTillSystemServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace FLAIRUK\GoodTillSystem;
4 4
 
5
-use Illuminate\Support\ServiceProvider;
6 5
 use FLAIRUK\GoodTillSystem\Commands\SetupCommand;
6
+use Illuminate\Support\ServiceProvider;
7 7
 
8 8
 class GoodTillSystemServiceProvider extends ServiceProvider
9 9
 {
Please login to merge, or discard this patch.
src/Models/ExternalSale.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace FLAIRUK\GoodTillSystem\Models;
4 4
 
5 5
 use FLAIRUK\GoodTillSystem\API;
6
-use Illuminate\Support\Facades\Config;
7
-use FLAIRUK\GoodTillSystem\Models\Sale;
8 6
 use FLAIRUK\GoodTillSystem\Models\Product;
7
+use FLAIRUK\GoodTillSystem\Models\Sale;
8
+use Illuminate\Support\Facades\Config;
9 9
 
10 10
 class ExternalSale extends API {
11 11
 
Please login to merge, or discard this patch.
src/Models/Report.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,9 +3,9 @@
 block discarded – undo
3 3
 namespace FLAIRUK\GoodTillSystem\Models;
4 4
 
5 5
 use FLAIRUK\GoodTillSystem\API;
6
-use Illuminate\Support\Facades\Config;
7
-use FLAIRUK\GoodTillSystem\Models\Sale;
8 6
 use FLAIRUK\GoodTillSystem\Models\Product;
7
+use FLAIRUK\GoodTillSystem\Models\Sale;
8
+use Illuminate\Support\Facades\Config;
9 9
 
10 10
 class Report extends API {
11 11
 
Please login to merge, or discard this patch.