Completed
Push — 3.0 ( e35e67...dd376e )
by Ian
43:15
created
src/Controllers/AuthController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      *
56 56
      * @param Request $request
57 57
      *
58
-     * @return $this|\Illuminate\Http\RedirectResponse
58
+     * @return \Illuminate\Http\RedirectResponse
59 59
      */
60 60
     public function authentication(Request $request)
61 61
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      *
98 98
      * @param \Illuminate\Http\Request $request
99 99
      *
100
-     * @return $this|\Illuminate\Http\RedirectResponse
100
+     * @return \Illuminate\Http\RedirectResponse
101 101
      */
102 102
     public function registration(Request $request)
103 103
     {
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
      *
167 167
      * @param \Illuminate\Http\Request $request
168 168
      *
169
-     * @return $this
169
+     * @return \Illuminate\Http\RedirectResponse
170 170
      */
171 171
     public function activation(Request $request)
172 172
     {
Please login to merge, or discard this patch.
src/Controllers/BaseDashboardController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
     /**
84 84
      * Parses a view, using the package view namespace
85 85
      *
86
-     * @param       $view
86
+     * @param       string $view
87 87
      * @param array $data
88 88
      *
89 89
      * @return \Illuminate\View\View
Please login to merge, or discard this patch.
src/Controllers/UsersController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * Display a listing of the resource.
24 24
      *
25
-     * @return Response
25
+     * @return \Illuminate\View\View
26 26
      */
27 27
     public function index()
28 28
     {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Create a new resource.
37 37
      *
38
-     * @return Response
38
+     * @return \Illuminate\View\View
39 39
      */
40 40
     public function create()
41 41
     {
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @param Request $request
53 53
      *
54
-     * @return $this|\Illuminate\Http\RedirectResponse
54
+     * @return \Illuminate\Http\RedirectResponse
55 55
      */
56 56
     public function store(Request $request)
57 57
     {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * @param \Illuminate\Http\Request $request
110 110
      * @param int                      $id
111 111
      *
112
-     * @return $this|\Illuminate\Http\RedirectResponse
112
+     * @return \Illuminate\Http\RedirectResponse
113 113
      */
114 114
     public function update(Request $request, $id)
115 115
     {
Please login to merge, or discard this patch.
src/Repositories/Permission/PermissionRepository.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -44,6 +44,7 @@
 block discarded – undo
44 44
 
45 45
     /**
46 46
      * {@inheritDoc}
47
+     * @param integer $id
47 48
      */
48 49
     public function getById($id)
49 50
     {
Please login to merge, or discard this patch.