Completed
Push — master ( b2bcde...ea6359 )
by Troy
01:34
created
src/app/Commands/CreateTenant.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 MultiTenantLaravel\App\Commands;
4 4
 
5
-use Illuminate\Console\Command;
6 5
 use Faker\Generator as Faker;
6
+use Illuminate\Console\Command;
7 7
 
8 8
 class CreateTenant extends Command
9 9
 {
Please login to merge, or discard this patch.
src/app/Commands/CreateUser.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 MultiTenantLaravel\App\Commands;
4 4
 
5
-use Illuminate\Console\Command;
6 5
 use Faker\Generator as Faker;
6
+use Illuminate\Console\Command;
7 7
 
8 8
 class CreateUser extends Command
9 9
 {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/LoginController.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 MultiTenantLaravel\App\Http\Controllers\Auth;
4 4
 
5
-use MultiTenantLaravel\App\Http\Controllers\Controller;
6 5
 use Illuminate\Foundation\Auth\AuthenticatesUsers;
6
+use MultiTenantLaravel\App\Http\Controllers\Controller;
7 7
 
8 8
 class LoginController extends Controller
9 9
 {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/RegisterController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace MultiTenantLaravel\App\Http\Controllers\Auth;
4 4
 
5
-use MultiTenantLaravel\App\Http\Controllers\Controller;
5
+use Illuminate\Foundation\Auth\RegistersUsers;
6 6
 use Illuminate\Support\Facades\Hash;
7 7
 use Illuminate\Support\Facades\Validator;
8
-use Illuminate\Foundation\Auth\RegistersUsers;
8
+use MultiTenantLaravel\App\Http\Controllers\Controller;
9 9
 
10 10
 class RegisterController extends Controller
11 11
 {
Please login to merge, or discard this patch.
src/app/Http/Controllers/DashboardController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace MultiTenantLaravel\App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-
7 5
 class DashboardController extends Controller
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.
src/app/Models/BaseUser.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 MultiTenantLaravel\App\Models;
4 4
 
5
-use Illuminate\Notifications\Notifiable;
6 5
 use Illuminate\Foundation\Auth\User as Authenticatable;
6
+use Illuminate\Notifications\Notifiable;
7 7
 use Illuminate\Support\Collection;
8 8
 
9 9
 abstract class BaseUser extends Authenticatable
Please login to merge, or discard this patch.
src/app/Models/BaseFeature.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      *
29 29
      * @param BaseTenant $tenant
30 30
      *
31
-     * @return void
31
+     * @return BaseFeature
32 32
      */
33 33
     public function giveToTenant(BaseTenant $tenant)
34 34
     {
Please login to merge, or discard this patch.
src/app/Models/BasePermission.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      *
36 36
      * @param BaseRole $role
37 37
      *
38
-     * @return void
38
+     * @return BasePermission
39 39
      */
40 40
     public function giveToRole(BaseRole $role)
41 41
     {
Please login to merge, or discard this patch.
src/app/Models/BaseRole.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      *
36 36
      * @param BasePermission $permission
37 37
      *
38
-     * @return void
38
+     * @return BaseRole
39 39
      */
40 40
     public function assignPermission(BasePermission $permission)
41 41
     {
Please login to merge, or discard this patch.