Completed
Branch job-vuejs (8df734)
by Adam
17:32
created
app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      * Get the response for a successful password reset.
72 72
      *
73 73
      * @param  string  $response
74
-     * @return \Illuminate\Http\Response
74
+     * @return \Illuminate\Http\RedirectResponse
75 75
      */
76 76
     protected function sendResetResponse($response)
77 77
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Pastebin/ShowController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param \Coyote\Pastebin $pastebin
28
-     * @return mixed
28
+     * @return \Illuminate\View\View
29 29
      */
30 30
     public function index($pastebin)
31 31
     {
Please login to merge, or discard this patch.
app/Http/Controllers/User/UserMenuTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 trait UserMenuTrait
11 11
 {
12 12
     /**
13
-     * @return mixed
13
+     * @return string
14 14
      */
15 15
     public function getUserMenu()
16 16
     {
Please login to merge, or discard this patch.
app/Services/LogViewer/LogViewer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
     /**
111 111
      * @param string $line
112
-     * @return bool
112
+     * @return integer
113 113
      */
114 114
     protected function isBeginningOfMessage($line, &$header = null)
115 115
     {
Please login to merge, or discard this patch.
app/Http/Forms/Forum/PollForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class PollForm extends Form
8 8
 {
9
-    const RULE_TITLE           = 'string|max:100';
9
+    const RULE_TITLE = 'string|max:100';
10 10
     // @todo dodac walidator sprawdzajacy liczbe (oraz dlugosc) linii
11 11
     // @todo musimy pisac "poll.title" jezeli ten formularz jest dzieckiem. reguly powinny byc zmieniane
12 12
     // przez klase Form
Please login to merge, or discard this patch.
app/Http/Forms/Job/FirmForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -280,7 +280,7 @@
 block discarded – undo
280 280
     }
281 281
 
282 282
     /**
283
-     * @param mixed $collection
283
+     * @param Firm\Benefit[] $collection
284 284
      */
285 285
     private function forget($collection)
286 286
     {
Please login to merge, or discard this patch.
app/Http/Forms/Job/JobForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@
 block discarded – undo
242 242
     }
243 243
 
244 244
     /**
245
-     * @param mixed $collection
245
+     * @param Tag[] $collection
246 246
      */
247 247
     private function forget($collection)
248 248
     {
Please login to merge, or discard this patch.
app/Models/Job.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Coyote\Services\Elasticsearch\CharFilters\JobFilter;
9 9
 use Illuminate\Database\Eloquent\Model;
10 10
 use Illuminate\Database\Eloquent\SoftDeletes;
11
-use Illuminate\Queue\SerializesModels;
12 11
 
13 12
 /**
14 13
  * @property int $id
Please login to merge, or discard this patch.
app/Repositories/Criteria/EagerLoading.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     private $relations;
13 13
 
14 14
     /**
15
-     * @param string|string[] $relations
15
+     * @param string $relations
16 16
      */
17 17
     public function __construct($relations)
18 18
     {
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @param \Illuminate\Database\Eloquent\Builder $model
24 24
      * @param Repository $repository
25
-     * @return mixed
25
+     * @return \Illuminate\Database\Eloquent\Builder
26 26
      */
27 27
     public function apply($model, Repository $repository)
28 28
     {
Please login to merge, or discard this patch.