Completed
Push — master ( 413e7c...13a6e1 )
by Sergi Tur
09:46
created
database/migrations/2017_07_13_172230_create_google_users_table.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
 /**
8 8
  * Class CreateProgressBatchesTable.
Please login to merge, or discard this patch.
src/Http/Controllers/GoogleAppsUsersController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Acacha\Users\Traits\HasPaginator;
8 8
 use Google;
9 9
 use Illuminate\Http\Request;
10
-use Illuminate\Pagination\LengthAwarePaginator;
11 10
 
12 11
 /**
13 12
  * Class GoogleAppsUsersController.
Please login to merge, or discard this patch.
src/Services/UserMigrations.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,13 +4,13 @@
 block discarded – undo
4 4
 
5 5
 use Acacha\Users\Events\ProgressBarStatusHasBeenUpdated;
6 6
 use Acacha\Users\Events\UserCreated;
7
+use Acacha\Users\Events\UserHasBeenMigrated;
8
+use Acacha\Users\Exceptions\MigrationException;
7 9
 use Acacha\Users\Models\ProgressBatch;
10
+use Illuminate\Database\QueryException;
8 11
 use Illuminate\Support\Collection;
9 12
 use Psr\Log\InvalidArgumentException;
10 13
 use Scool\EbreEscoolModel\User;
11
-use Acacha\Users\Events\UserHasBeenMigrated;
12
-use Acacha\Users\Exceptions\MigrationException;
13
-use Illuminate\Database\QueryException;
14 14
 
15 15
 /**
16 16
  * Class UserMigrations.
Please login to merge, or discard this patch.