Completed
Branch master (8e0976)
by Adam
04:13
created
app/Services/Session/Viewers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @param Session[] $collection
136
+     * @param Collection $collection
137 137
      * @return Collection
138 138
      */
139 139
     private function unique(Collection $collection)
Please login to merge, or discard this patch.
app/Models/Searchable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /**
19 19
      * Index data in elasticsearch
20 20
      *
21
-     * @return mixed
21
+     * @return callable
22 22
      * @throws \Exception
23 23
      */
24 24
     public function putToIndex()
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      *
41 41
      * @throws Missing404Exception,
42 42
      * @throws \Exception
43
-     * @return mixed
43
+     * @return callable
44 44
      */
45 45
     public function deleteFromIndex()
46 46
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Adm/BaseController.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -76,6 +76,7 @@
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * @inheritdoc
79
+     * @param string $view
79 80
      */
80 81
     protected function view($view = null, $data = [])
81 82
     {
Please login to merge, or discard this patch.
app/Http/Middleware/SetupGuestCookie.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      *
14 14
      * @param  \Illuminate\Http\Request $request
15 15
      * @param  \Closure $next
16
-     * @return mixed
16
+     * @return \Illuminate\Http\Response
17 17
      */
18 18
     public function handle(Request $request, Closure $next)
19 19
     {
Please login to merge, or discard this patch.
app/Repositories/Criteria/Forum/AccordingToUserOrder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     /**
25 25
      * @param \Illuminate\Database\Eloquent\Builder $model
26 26
      * @param Repository $repository
27
-     * @return mixed
27
+     * @return \Illuminate\Database\Eloquent\Builder
28 28
      */
29 29
     public function apply($model, Repository $repository)
30 30
     {
Please login to merge, or discard this patch.
app/Services/Parser/Factories/Cache.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
      * Additional cache id parameter makes content unique. This is useful if we have like two identical comments
36 36
      * but we want to parse and cache them differently.
37 37
      *
38
-     * @param mixed $id
38
+     * @param string $id
39 39
      * @return $this
40 40
      */
41 41
     public function setId($id)
Please login to merge, or discard this patch.
app/Services/Elasticsearch/Filters/Job/Tag.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
     /**
17 17
      * Tags constructor.
18
-     * @param array $tags
18
+     * @param string[] $tags
19 19
      */
20 20
     public function __construct($tags = [])
21 21
     {
Please login to merge, or discard this patch.
app/Models/Job.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -544,7 +544,7 @@
 block discarded – undo
544 544
     }
545 545
 
546 546
     /**
547
-     * @param mixed $features
547
+     * @param Feature[] $features
548 548
      */
549 549
     public function setDefaultFeatures($features)
550 550
     {
Please login to merge, or discard this patch.
app/Services/Skills/Predictions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @return \Coyote\Tag[]|null
83
+     * @return null|\Illuminate\Support\Collection
84 84
      */
85 85
     private function getUserPopularTags()
86 86
     {
Please login to merge, or discard this patch.