Test Failed
Pull Request — master (#58)
by Johnny
05:45
created
app/Exceptions/Handler.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,6 @@
 block discarded – undo
45 45
      * Render an exception into an HTTP response.
46 46
      *
47 47
      * @param \Illuminate\Http\Request $request
48
-     * @param \Exception               $exception
49 48
      *
50 49
      * @return \Illuminate\Http\Response
51 50
      */
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
      * Log the user out of the application.
108 108
      *
109 109
      * @param  \Illuminate\Http\Request  $request
110
-     * @return \Illuminate\Http\Response
110
+     * @return \Illuminate\Http\RedirectResponse
111 111
      */
112 112
     public function logout(Request $request)
113 113
     {
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/RegisterController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
      * Handle a registration request for the application.
90 90
      *
91 91
      * @param  \Illuminate\Http\Request  $request
92
-     * @return \Illuminate\Http\Response
92
+     * @return \Illuminate\Http\RedirectResponse
93 93
      */
94 94
     public function register(Request $request)
95 95
     {
Please login to merge, or discard this patch.
app/Http/Controllers/SystemController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      *
40 40
      * @param \App\Http\Requests\SubmitUrlRequest $request
41 41
      *
42
-     * @return \Illuminate\Http\Response
42
+     * @return \Illuminate\Http\RedirectResponse
43 43
      */
44 44
     public function store(SubmitUrlRequest $request, Link $link)
45 45
     {
Please login to merge, or discard this patch.
app/Notifications/EmailVerification.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * Get the notification's delivery channels.
28 28
      *
29 29
      * @param  mixed  $notifiable
30
-     * @return array
30
+     * @return string[]
31 31
      */
32 32
     public function via($notifiable)
33 33
     {
Please login to merge, or discard this patch.