Completed
Push — develop ( 6a8671...27ddc4 )
by Wisoot
8s
created
src/database/migrations/2014_10_12_200000_create_jwt_claims_table.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Database\Schema\Blueprint;
4 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5 5
 use Illuminate\Support\Facades\Config;
6 6
 use Illuminate\Support\Facades\Schema;
7 7
 
Please login to merge, or discard this patch.
src/JwtGuard.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     /**
179 179
      * Determine if the user matches the credentials.
180 180
      *
181
-     * @param mixed $user
181
+     * @param AuthenticatableContract $user
182 182
      * @param array $credentials
183 183
      * @return bool
184 184
      */
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
     /**
433 433
      * getRequestToken method
434 434
      *
435
-     * @return string|null
435
+     * @return string
436 436
      */
437 437
     protected function getRequestToken()
438 438
     {
Please login to merge, or discard this patch.
src/Providers/JwtGuardServiceProvider.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Support\Facades\Auth;
6 6
 use Illuminate\Support\ServiceProvider;
7
+use WWON\JwtGuard\ClaimManager;
7 8
 use WWON\JwtGuard\Contract\ClaimManager as ClaimManagerContract;
8 9
 use WWON\JwtGuard\JwtGuard;
9 10
 use WWON\JwtGuard\JwtService;
10
-use WWON\JwtGuard\ClaimManager;
11 11
 
12 12
 class JwtGuardServiceProvider extends ServiceProvider
13 13
 {
Please login to merge, or discard this patch.