Completed
Push — master ( 57aa9a...9d09aa )
by Jacob
02:21
created
src/Adapters/Lcobucci/Generator.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,8 @@
 block discarded – undo
5 5
  */
6 6
 namespace Canis\Lumen\Jwt\Adapters\Lcobucci;
7 7
 
8
-use Lcobucci\JWT\ValidationData;
9 8
 use Lcobucci\JWT\Builder;
10 9
 use Lcobucci\JWT\Signer\Hmac\Sha256;
11
-use Lcobucci\JWT\Parser;
12 10
 use Lcobucci\JWT\Token;
13 11
 use Canis\Lumen\Jwt\Contracts\Generator as GeneratorContract;
14 12
 
Please login to merge, or discard this patch.
src/Adapters/AbstractFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
     protected function getDefaultConfig()
42 42
     {
43 43
         return [
44
-            'refreshOffsetAllowance' => 3600*6,
44
+            'refreshOffsetAllowance' => 3600 * 6,
45 45
             'expOffset' => 3600,
46 46
             'nbfOffset' => 0,
47 47
             'requiredClaims' => ['iat', 'exp', 'nbf', 'sub', 'jti']
Please login to merge, or discard this patch.
src/Adapters/Lcobucci/ValidationData.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @copyright Copyright (c) 2016 Canis.io
4
- * @license   MIT
5
- * @license   http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
6
- */
3
+     * @copyright Copyright (c) 2016 Canis.io
4
+     * @license   MIT
5
+     * @license   http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
6
+     */
7 7
 namespace Canis\Lumen\Jwt\Adapters\Lcobucci;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.