Completed
Push — master ( 26fc5d...885dd6 )
by Jonathan André
03:18
created
src/Lumen/Authentication/JWT/Interfaces/JWTInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      *
57 57
      * @param string $token
58 58
      *
59
-     * @return Lcobucci\JWT\Token
59
+     * @return Token|null
60 60
      */
61 61
     public function decodeToken($token)
62 62
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     /**
77 77
      * Verify is validate token in signature.
78 78
      *
79
-     * @param Lcobucci\JWT\Token $token
79
+     * @param Token $token
80 80
      *
81 81
      * @return bool
82 82
      */
Please login to merge, or discard this patch.
src/Lumen/Http/Controllers/BaseController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@
 block discarded – undo
17 17
         return $this->mainService;
18 18
     }
19 19
 
20
+    /**
21
+     * @param Request $filters
22
+     */
20 23
     protected function translateFilters($filters)
21 24
     {
22 25
         if ($filters instanceof Request) {
Please login to merge, or discard this patch.