Completed
Push — master ( 0d8264...0f9782 )
by Sebastian
03:43
created
app/Services/Html/FormBuilder.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 App\Models\Enums\TagType;
6 6
 use App\Models\Tag;
7 7
 use App\Models\Transformers\MediaTransformer;
8
-use App\Repositories\TagRepository;
9 8
 use Carbon\Carbon;
10 9
 use Illuminate\Html\FormBuilder as BaseFormBuilder;
11 10
 use HTML;
Please login to merge, or discard this patch.
app/Http/Requests/Request.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
      * Get a parameter of the current route.
37 37
      *
38
-     * @param $key
38
+     * @param string $key
39 39
      *
40 40
      * @return object|string
41 41
      */
Please login to merge, or discard this patch.
app/Http/Controllers/Front/AuthController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
         return fragment('auth.failed');
39 39
     }
40 40
 
41
+    /**
42
+     * @param Request $request
43
+     */
41 44
     protected function sendInactiveAccountResponse($request)
42 45
     {
43 46
         return redirect()->back()
Please login to merge, or discard this patch.
app/Http/Controllers/Back/AuthController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -38,6 +38,9 @@
 block discarded – undo
38 38
         return fragment('auth.failed');
39 39
     }
40 40
 
41
+    /**
42
+     * @param Request $request
43
+     */
41 44
     protected function sendInactiveAccountResponse($request)
42 45
     {
43 46
         return redirect()->back()
Please login to merge, or discard this patch.
app/Models/Presenters/ArticlePresenter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -10,6 +10,9 @@
 block discarded – undo
10 10
  */
11 11
 class ArticlePresenter extends Presenter
12 12
 {
13
+    /**
14
+     * @param integer $characters
15
+     */
13 16
     public function tease($characters, $moreTextIndicator = '...') : Str
14 17
     {
15 18
         return (string) string($this->entity->text)->tease($characters, $moreTextIndicator);
Please login to merge, or discard this patch.
app/Models/Fragment.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Models;
4 4
 
5
-use App\Foundation\Models\Base\TranslatableEloquent;
6 5
 use App\Foundation\Models\Traits\Presentable;
7 6
 use Illuminate\Database\Eloquent\Model;
8 7
 use Spatie\Translatable\HasTranslations;
Please login to merge, or discard this patch.