Completed
Push — 2.0 ( 324d94...b7d574 )
by Nicolas
03:02
created
Repositories/Eloquent/EloquentTagRepository.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@  discard block
 block discarded – undo
21 21
         return $this->setLocaleAsKey($tags);
22 22
     }
23 23
 
24
+    /**
25
+     * @param \Illuminate\Database\Eloquent\Collection $tags
26
+     */
24 27
     private function setLocaleAsKey($tags)
25 28
     {
26 29
         $cleanedTags = [];
@@ -42,7 +45,7 @@  discard block
 block discarded – undo
42 45
      * Create the tag for the specified language
43 46
      * @param  string $lang
44 47
      * @param  array  $name
45
-     * @return mixed
48
+     * @return \Illuminate\Database\Eloquent\Model
46 49
      */
47 50
     public function createForLanguage($lang = 'en', $name)
48 51
     {
Please login to merge, or discard this patch.
Http/Controllers/Admin/TagController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * Store a newly created resource in storage.
47 47
      *
48 48
      * @param  Request $request
49
-     * @return Response
49
+     * @return \Illuminate\Http\RedirectResponse
50 50
      */
51 51
     public function store(Request $request)
52 52
     {
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * @param  Tag $tag
75 75
      * @param  Request $request
76
-     * @return Response
76
+     * @return \Illuminate\Http\RedirectResponse
77 77
      */
78 78
     public function update(Tag $tag, Request $request)
79 79
     {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      * Remove the specified resource from storage.
89 89
      *
90 90
      * @param  Tag $tag
91
-     * @return Response
91
+     * @return \Illuminate\Http\RedirectResponse
92 92
      */
93 93
     public function destroy(Tag $tag)
94 94
     {
Please login to merge, or discard this patch.
Http/Controllers/Admin/CategoryController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * Store a newly created resource in storage.
47 47
      *
48 48
      * @param  Request $request
49
-     * @return Response
49
+     * @return \Illuminate\Http\RedirectResponse
50 50
      */
51 51
     public function store(Request $request)
52 52
     {
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * @param  Tag $tag
75 75
      * @param  Request $request
76
-     * @return Response
76
+     * @return \Illuminate\Http\RedirectResponse
77 77
      */
78 78
     public function update(Tag $tag, Request $request)
79 79
     {
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      * Remove the specified resource from storage.
89 89
      *
90 90
      * @param  Tag $tag
91
-     * @return Response
91
+     * @return \Illuminate\Http\RedirectResponse
92 92
      */
93 93
     public function destroy(Tag $tag)
94 94
     {
Please login to merge, or discard this patch.