Access
2 years ago
Middleware
2 years ago
Authenticatable.php
2 years ago
CanResetPassword.php
2 years ago
Factory.php
2 years ago
Guard.php
1 month ago
MustVerifyEmail.php
2 years ago
PasswordBroker.php
2 years ago
PasswordBrokerFactory.php
1 month ago
StatefulGuard.php
2 years ago
SupportsBasicAuth.php
2 years ago
UserProvider.php
2 years ago
PasswordBrokerFactory.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Auth; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface PasswordBrokerFactory |
| 7 | { |
| 8 | /** |
| 9 | * Get a password broker instance by name. |
| 10 | * |
| 11 | * @param string|null $name |
| 12 | * @return \Illuminate\Contracts\Auth\PasswordBroker |
| 13 | */ |
| 14 | public function broker($name = null); |
| 15 | } |
| 16 |