Completed
Branch master (574b64)
by Fèvre
11:47
created
app/Http/Controllers/AccountController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 use Illuminate\Http\Request;
5 5
 use Illuminate\Http\RedirectResponse;
6 6
 use Illuminate\Support\Facades\Auth;
7
-use Illuminate\Support\Facades\Validator as FacadeValidator;
8
-use Illuminate\Validation\Validator;
9 7
 use Illuminate\View\View;
10 8
 use Xetaravel\Models\Repositories\AccountRepository;
11 9
 use Xetaravel\Models\User;
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 use Illuminate\Auth\Events\Registered;
5 5
 use Illuminate\Foundation\Auth\RegistersUsers;
6 6
 use Illuminate\Http\Request;
7
-use Illuminate\Support\Facades\App;
8
-use Illuminate\Support\Facades\Validator;
9 7
 use Ultraware\Roles\Models\Role;
10 8
 use Xetaravel\Http\Controllers\Controller;
11 9
 use Xetaravel\Models\User;
Please login to merge, or discard this patch.
app/Http/Controllers/Blog/ArticleController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Xetaravel\Http\Controllers\Controller;
5 5
 use Xetaravel\Models\Article;
6
-use Xetaravel\Models\Comment;
7 6
 use Illuminate\Http\Request;
8 7
 
9 8
 class ArticleController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/Blog/CommentController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Http\Request;
6 6
 use Xetaravel\Http\Controllers\Controller;
7 7
 use Xetaravel\Models\Article;
8
-use Xetaravel\Models\Comment;
9 8
 use Xetaravel\Models\Repositories\CommentRepository;
10 9
 use Xetaravel\Models\Validators\CommentValidator;
11 10
 
Please login to merge, or discard this patch.
app/Http/Controllers/PageController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Xetaravel\Models\Article;
5 5
 use Xetaravel\Models\Comment;
6
-use Illuminate\Http\Request;
7 6
 use Illuminate\Support\Facades\Auth;
8 7
 
9 8
 class PageController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/UserController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Xetaravel\Http\Controllers;
3 3
 
4
-use Xetaravel\Models\Article;
5 4
 use Xetaravel\Models\User;
6
-use Xetaravel\Models\Comment;
7 5
 use Illuminate\Http\Request;
8 6
 
9 7
 class UserController extends Controller
Please login to merge, or discard this patch.
app/Models/Repositories/AccountRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Xetaravel\Models\Repositories;
3 3
 
4
-use Illuminate\Support\Collection;
5 4
 use Illuminate\Support\Facades\Auth;
6 5
 use Xetaravel\Models\Account;
7 6
 
Please login to merge, or discard this patch.
app/MediaLibrary/PathGenerator/XetaravelPathGenerator.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * Get the path for conversions of the given media, relative to the root storage path.
21
-
22 21
      * @return string
23 22
      */
24 23
     public function getPathForConversions(Media $media) : string
Please login to merge, or discard this patch.
app/Models/User.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -109,22 +109,22 @@
 block discarded – undo
109 109
     public function registerMediaConversions()
110 110
     {
111 111
         $this->addMediaConversion('thumbnail.small')
112
-              ->width(100)
113
-              ->height(100)
114
-              ->keepOriginalImageFormat();
112
+                ->width(100)
113
+                ->height(100)
114
+                ->keepOriginalImageFormat();
115 115
         
116 116
         $this->addMediaConversion('thumbnail.medium')
117
-              ->width(200)
118
-              ->height(200)
119
-              ->keepOriginalImageFormat();
117
+                ->width(200)
118
+                ->height(200)
119
+                ->keepOriginalImageFormat();
120 120
         
121 121
         $this->addMediaConversion('thumbnail.big')
122
-              ->width(300)
123
-              ->height(300)
124
-              ->keepOriginalImageFormat();
122
+                ->width(300)
123
+                ->height(300)
124
+                ->keepOriginalImageFormat();
125 125
         
126 126
         $this->addMediaConversion('original')
127
-              ->keepOriginalImageFormat();
127
+                ->keepOriginalImageFormat();
128 128
     }
129 129
 
130 130
     /**
Please login to merge, or discard this patch.