Skip to content

Commit f0d62b3

Browse files
committed
Pint fix
1 parent 553f7a8 commit f0d62b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PhoneVerificationServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ protected function storages()
5656
],
5757
'mongodb' => [
5858
\AlexGeno\PhoneVerification\Storage\MongoDb::class, // storage class name
59-
function (array $config): array { // params for the constructor
59+
function (array $config): array {
6060
/**
6161
* @var \Jenssegers\Mongodb\Connection
6262
*/
6363
$connection = DB::connection($config['connection']);
6464
$config['settings']['db'] = $connection->getDatabaseName();
6565

6666
return [$connection->getMongoClient(), $config['settings']];
67-
},
67+
}, // params for the constructor
6868
],
6969
];
7070
}

0 commit comments

Comments
 (0)