PasswordBrokerFactory.php 248B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Contracts\Auth;
  3. interface PasswordBrokerFactory
  4. {
  5. /**
  6. * Get a password broker instance by name.
  7. *
  8. * @param string|null $name
  9. * @return mixed
  10. */
  11. public function broker($name = null);
  12. }