Completed
Push — master ( be44c5...20f323 )
by Jan
07:43
created
app/Http/Controllers/Admin/AdminModuleController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
      * Store a newly created resource in storage.
254 254
      *
255 255
      * @param  Request  $request
256
-     * @return Response
256
+     * @return \Illuminate\Http\RedirectResponse
257 257
      */
258 258
     public function store(Request $request) {
259 259
 
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
      *
373 373
      * @param  Request  $request
374 374
      * @param  int  $id
375
-     * @return Response
375
+     * @return \Illuminate\Http\RedirectResponse
376 376
      */
377 377
     public function update(Request $request, $id) {
378 378
         
@@ -498,7 +498,7 @@  discard block
 block discarded – undo
498 498
      * Remove the specified resource from storage.
499 499
      *
500 500
      * @param  int  $id
501
-     * @return Response
501
+     * @return \Illuminate\Http\RedirectResponse
502 502
      */
503 503
     public function destroy($id) {
504 504
         /**
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/UserController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * Store function override
36 36
      *
37 37
      * @param  Request  $request
38
-     * @return Response
38
+     * @return \Illuminate\Http\RedirectResponse
39 39
      */
40 40
     public function store(Request $request)
41 41
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      *
65 65
      * @param  Request  $request
66 66
      * @param  integer  $id
67
-     * @return Response
67
+     * @return \Illuminate\Http\RedirectResponse
68 68
      */
69 69
     public function update(Request $request, $id)
70 70
     {
Please login to merge, or discard this patch.
app/Http/Helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
      *
103 103
      * @param string $module
104 104
      * @param array $possibleParameters
105
-     * @return boolean
105
+     * @return false|string
106 106
      */
107 107
     public static function resetSaveIndexParameters($module, $possibleParameters = ['search', 'orderbycolumn', 'orderbytype', 'relation'])
108 108
     {
Please login to merge, or discard this patch.
app/Http/Middleware/MediaImageSelect.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
      *
25 25
      * @param Request $request
26 26
      * @param Closure $next
27
-     * @param array $models
28 27
      * @return mixed
29 28
      */
30 29
     public function handle($request, Closure $next)
Please login to merge, or discard this patch.
app/Image.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Image category link
100 100
      * 
101
-     * @return object
101
+     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
102 102
      */
103 103
     public function imagecategories(){
104 104
         
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     /**
109 109
      * Slide link
110 110
      * 
111
-     * @return object
111
+     * @return \Illuminate\Database\Eloquent\Relations\HasMany
112 112
      */
113 113
     public function slides(){
114 114
         
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     /**
119 119
      * Article category
120 120
      * 
121
-     * @return object
121
+     * @return \Illuminate\Database\Eloquent\Relations\HasMany
122 122
      */
123 123
     public function articlecategories(){
124 124
         
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     /**
129 129
      * Article category
130 130
      * 
131
-     * @return object
131
+     * @return \Illuminate\Database\Eloquent\Relations\HasMany
132 132
      */
133 133
     public function pages(){
134 134
         
Please login to merge, or discard this patch.
app/ImageCategory.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
      * Image link
82 82
      * 
83
-     * @return object
83
+     * @return \Illuminate\Database\Eloquent\Relations\HasMany
84 84
      */
85 85
     public function images(){
86 86
         
Please login to merge, or discard this patch.