Test Failed
Push — master ( 4748e5...bbb682 )
by Petr
12:47
created
Category
php-src/Storage/Dibi/RefreshTokenStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
         return new RefreshToken(
81 81
             strval($row['refresh_token']),
82 82
             new DateTime(strval($row['expires_at'])),
83
-            is_numeric($row['client_id'])? intval($row['client_id']) : strval($row['client_id']),
83
+            is_numeric($row['client_id']) ? intval($row['client_id']) : strval($row['client_id']),
84 84
             is_null($row['user_id']) ? null : strval($row['user_id']),
85 85
         );
86 86
     }
Please login to merge, or discard this patch.