Completed
Push — master ( 8b8176...86815f )
by wen
03:16
created
src/Component/Component.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -62,6 +62,9 @@
 block discarded – undo
62 62
         return $this->name;
63 63
     }
64 64
 
65
+    /**
66
+     * @return string|null
67
+     */
65 68
     public function getTitle()
66 69
     {
67 70
         return $this->title;
Please login to merge, or discard this patch.
src/Exceptions/Handler.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,6 +141,9 @@  discard block
 block discarded – undo
141 141
         }
142 142
     }
143 143
 
144
+    /**
145
+     * @param \Illuminate\Http\Request $request
146
+     */
144 147
     protected function isAdmin($request)
145 148
     {
146 149
         $route = $request->route();
@@ -151,7 +154,7 @@  discard block
 block discarded – undo
151 154
      * @param \Illuminate\Http\Request                $request
152 155
      * @param \Sco\Admin\Contracts\ExceptionInterface $exception
153 156
      *
154
-     * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response
157
+     * @return \Symfony\Component\HttpFoundation\Response|null
155 158
      */
156 159
     protected function renderAdminException(
157 160
         $request, ExceptionInterface $exception
Please login to merge, or discard this patch.