Passed
Push — master ( 6b2a37...7cbd7b )
by Jelmer
05:33
created
src/Session/JwtToPsrMapperInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     const SESSION_CLAIM   = 'session-data';
13 13
     const DEFAULT_COOKIE  = 'slsession';
14 14
 
15
-    /** @return  ?Token */
15
+    /** @return  null|Token */
16 16
     public function parseToken(ServerRequestInterface $request);
17 17
 
18 18
     public function appendToken(
Please login to merge, or discard this patch.
src/Controller/CallableController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 
15 15
     public static function factoryFromCallable(callable $closure) : callable
16 16
     {
17
-        return function () use ($closure) {
17
+        return function() use ($closure) {
18 18
             return self::fromCallable($closure);
19 19
         };
20 20
     }
Please login to merge, or discard this patch.