1 | <?php |
||
8 | class TwoFactorAuthenticationServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Perform post-registration booting of services. |
||
12 | * Loading Routes, Views and Migrations. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
42 | |||
43 | /** |
||
44 | * Get User moded defined in config file. |
||
45 | * |
||
46 | * @return string |
||
47 | */ |
||
48 | public static function determineTwoFAModel(): string |
||
52 | |||
53 | /** |
||
54 | * Get User Model Instance. |
||
55 | * |
||
56 | * @return \Illuminate\Database\Eloquent\Model |
||
57 | */ |
||
58 | public static function getTwoFAModelInstance(): Model |
||
64 | } |
||
65 |