Completed
Pull Request — master (#528)
by Daniel
04:35
created
app/Models/Firm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @return array
55
+     * @return string[]
56 56
      */
57 57
     public static function getEmployeesList()
58 58
     {
Please login to merge, or discard this patch.
app/Models/Taggable.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
     /**
18
-     * @return array
18
+     * @return Post
19 19
      */
20 20
     public function getTagNames()
21 21
     {
Please login to merge, or discard this patch.
app/Http/Validators/ThrottleValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
     }
100 100
 
101 101
     /**
102
-     * @return int
102
+     * @return double
103 103
      */
104 104
     protected function availableIn()
105 105
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Wiki/ShowController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param $wikiId
121
+     * @param integer $wikiId
122 122
      * @return \Coyote\Wiki[]
123 123
      */
124 124
     private function getRelated($wikiId)
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/Services/Elasticsearch/Filters/Job/Tag.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
     /**
17 17
      * Tags constructor.
18
-     * @param string[]|string $tags
18
+     * @param string[] $tags
19 19
      */
20 20
     public function __construct($tags = [])
21 21
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     }
55 55
 
56 56
     /**
57
-     * @return array
57
+     * @return string[]
58 58
      */
59 59
     public function getTags()
60 60
     {
Please login to merge, or discard this patch.
app/Services/Session/Renderer.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/Services/TwigBridge/Extensions/FormBuilder.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     }
20 20
 
21 21
     /**
22
-     * @return array
22
+     * @return Twig_SimpleFunction[]
23 23
      */
24 24
     public function getFunctions()
25 25
     {
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     }
97 97
 
98 98
     /**
99
-     * @param $element
99
+     * @param string $element
100 100
      * @param $field
101 101
      * @param array $options
102 102
      * @return null
Please login to merge, or discard this patch.
app/Http/Controllers/Microblog/HomeController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
      * Zostawia jedynie 2 ostatnie komentarze do wpisu
105 105
      *
106 106
      * @param \Illuminate\Pagination\LengthAwarePaginator $microblogs
107
-     * @return mixed
107
+     * @return \Illuminate\Pagination\LengthAwarePaginator
108 108
      */
109 109
     private function slice($microblogs)
110 110
     {
Please login to merge, or discard this patch.