Completed
Pull Request — master (#87)
by Cristian
08:06
created
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/Http/Controllers/Auth/RegisterController.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 \Illuminate\Http\Request $request
104 104
      *
105
-     * @return \Illuminate\Http\Response
105
+     * @return \Illuminate\Http\RedirectResponse
106 106
      */
107 107
     public function register(Request $request)
108 108
     {
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   +4 added lines patch added patch discarded remove patch
@@ -51,6 +51,10 @@
 block discarded – undo
51 51
  * e.g guest:backpack.admin.
52 52
  */
53 53
 if (!function_exists('backpack_middleware')) {
54
+
55
+    /**
56
+     * @param string $chainedWith
57
+     */
54 58
     function backpack_middleware($chainedWith = null)
55 59
     {
56 60
         if (config('backpack.base.separate_admin_session')) {
Please login to merge, or discard this patch.