We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9df6d1e + fdced66 commit fe70309Copy full SHA for fe70309
src/Jenssegers/Mongodb/Auth/PasswordBrokerManager.php
@@ -11,14 +11,6 @@ class PasswordBrokerManager extends BasePasswordBrokerManager
11
*/
12
protected function createTokenRepository(array $config)
13
{
14
- $key = $this->app['config']['app.key'];
15
-
16
- if (\Illuminate\Support\Str::startsWith($key, 'base64:')) {
17
- $key = base64_decode(substr($key, 7));
18
- }
19
20
- $connection = isset($config['connection']) ? $config['connection'] : null;
21
22
return new DatabaseTokenRepository(
23
$this->app['db']->connection(),
24
$this->app['hash'],
0 commit comments