We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e4e843a + 3bb6ab6 commit 0dd5825Copy full SHA for 0dd5825
src/Google2FA.php
@@ -259,10 +259,10 @@ protected function updateCurrentAuthTime()
259
public function verifyGoogle2FA($secret, $one_time_password)
260
{
261
return $this->verifyKey(
262
- $secret,
263
- $one_time_password,
264
- $this->config('window'),
265
- null, // $timestamp
+ $secret,
+ $one_time_password,
+ $this->config('window'),
+ null, // $timestamp
266
$this->getOldTimestamp() ?: null
267
);
268
}
src/ServiceProvider.php
@@ -22,7 +22,8 @@ private function configurePaths()
22
private function mergeConfig()
23
24
$this->mergeConfigFrom(
25
- __DIR__.'/config/config.php', 'google2fa'
+ __DIR__.'/config/config.php',
26
+ 'google2fa'
27
28
29
0 commit comments