123456789101112131415161718 |
- <?php
- namespace App\Services\Auth;
- use Illuminate\Auth\Passwords\PasswordBrokerManager as BasePasswordBrokerManager;
- class PasswordBrokerManager extends BasePasswordBrokerManager
- {
- /**
- * Create a token repository instance based on the given configuration.
- *
- * @param array $config
- * @return \Illuminate\Auth\Passwords\TokenRepositoryInterface
- */
- protected function createTokenRepository(array $config)
- {
- return new ServiceTokenRepository();
- }
- }
|