Completed
Pull Request — master (#323)
by Cristian
09:27
created
src/app/Http/Controllers/Auth/RegisterController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @param array $data
63 63
      *
64
-     * @return User
64
+     * @return \Illuminate\Contracts\Auth\Authenticatable
65 65
      */
66 66
     protected function create(array $data)
67 67
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      *
98 98
      * @param \Illuminate\Http\Request $request
99 99
      *
100
-     * @return \Illuminate\Http\Response
100
+     * @return \Illuminate\Http\RedirectResponse
101 101
      */
102 102
     public function register(Request $request)
103 103
     {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/LoginController.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
      *
72 72
      * @param \Illuminate\Http\Request $request
73 73
      *
74
-     * @return \Illuminate\Http\Response
74
+     * @return \Illuminate\Http\RedirectResponse
75 75
      */
76 76
     public function logout(Request $request)
77 77
     {
Please login to merge, or discard this patch.
src/app/Console/Commands/Install.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
     /**
107 107
      * Write text to the screen for the user to see.
108 108
      *
109
-     * @param [string] $type    line, info, comment, question, error
109
+     * @param string $type    line, info, comment, question, error
110 110
      * @param [string] $content
111 111
      */
112 112
     public function echo($type, $content)
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
      * Appends the configured backpack prefix and returns
6 6
      * the URL using the standard Laravel helpers.
7 7
      *
8
-     * @param $path
8
+     * @param string $path
9 9
      *
10 10
      * @return string
11 11
      */
Please login to merge, or discard this patch.