Passed
Pull Request — master (#2)
by Tim
02:52
created
lib/Auth/Process/OTP2YubiPrefix.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         Assert::keyExists($state, 'Attributes');
64 64
         $attributes = $state['Attributes'];
65 65
 
66
-        Logger::debug('OTP2YubiPrefix: enter with attributes: ' . implode(',', array_keys($attributes)));
66
+        Logger::debug('OTP2YubiPrefix: enter with attributes: '.implode(',', array_keys($attributes)));
67 67
 
68 68
         $otps = $attributes['otp'];
69 69
         $otp = $otps['0'];
@@ -74,12 +74,12 @@  discard block
 block discarded – undo
74 74
         $attributes['yubiPrefix'] = [$identity];
75 75
 
76 76
         Logger::info(
77
-            'OTP2YubiPrefix: otp: ' . $otp . ' identity: ' . $identity . ' (otp keys: '
78
-            . implode(',', array_keys($otps)) . ')'
77
+            'OTP2YubiPrefix: otp: '.$otp.' identity: '.$identity.' (otp keys: '
78
+            . implode(',', array_keys($otps)).')'
79 79
         );
80 80
 
81 81
         unset($attributes['otp']);
82 82
 
83
-        Logger::debug('OTP2YubiPrefix: leaving with attributes: ' . implode(',', array_keys($attributes)));
83
+        Logger::debug('OTP2YubiPrefix: leaving with attributes: '.implode(',', array_keys($attributes)));
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
lib/Auth/Source/YubiKey.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
         Assert::isInstanceOf(
131 131
             $source,
132 132
             YubiKey::class,
133
-            'Could not find authentication source with id ' . $state[self::AUTHID]
133
+            'Could not find authentication source with id '.$state[self::AUTHID]
134 134
         );
135 135
 
136 136
         try {
Please login to merge, or discard this patch.