Completed
Pull Request — master (#1)
by Adolfo
01:07
created
database/migrations/2019_10_27_012545_create_subscriptions_tables.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Support\Facades\Schema;
4
-use Illuminate\Database\Schema\Blueprint;
5 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6 6
 
7 7
 class CreateSubscriptionsTables extends Migration
8 8
 {
Please login to merge, or discard this patch.
src/Entities/Group.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,9 +4,7 @@
 block discarded – undo
4 4
 namespace Sagitarius29\LaravelSubscriptions\Entities;
5 5
 
6 6
 
7
-use Illuminate\Database\Eloquent\Collection;
8 7
 use Sagitarius29\LaravelSubscriptions\Contracts\GroupContract;
9
-use Sagitarius29\LaravelSubscriptions\Contracts\PlanContract;
10 8
 
11 9
 class Group implements GroupContract
12 10
 {
Please login to merge, or discard this patch.
src/Traits/HasSubscriptions.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,7 @@
 block discarded – undo
5 5
 
6 6
 
7 7
 use Sagitarius29\LaravelSubscriptions\Contracts\PlanContract;
8
-use Sagitarius29\LaravelSubscriptions\Contracts\SubscribableContract;
9 8
 use Sagitarius29\LaravelSubscriptions\Contracts\SubscriptionContact;
10
-use Sagitarius29\LaravelSubscriptions\Entities\Plan;
11 9
 use Sagitarius29\LaravelSubscriptions\Entities\Subscription;
12 10
 
13 11
 trait HasSubscriptions
Please login to merge, or discard this patch.