Skip to content

Commit 0dd5825

Browse files
Merge pull request #104 from antonioribeiro/analysis-jLNQ7J
Apply fixes from StyleCI [ci skip] [skip ci]
2 parents e4e843a + 3bb6ab6 commit 0dd5825

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/Google2FA.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,10 @@ protected function updateCurrentAuthTime()
259259
public function verifyGoogle2FA($secret, $one_time_password)
260260
{
261261
return $this->verifyKey(
262-
$secret,
263-
$one_time_password,
264-
$this->config('window'),
265-
null, // $timestamp
262+
$secret,
263+
$one_time_password,
264+
$this->config('window'),
265+
null, // $timestamp
266266
$this->getOldTimestamp() ?: null
267267
);
268268
}

src/ServiceProvider.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ private function configurePaths()
2222
private function mergeConfig()
2323
{
2424
$this->mergeConfigFrom(
25-
__DIR__.'/config/config.php', 'google2fa'
25+
__DIR__.'/config/config.php',
26+
'google2fa'
2627
);
2728
}
2829

0 commit comments

Comments
 (0)