Hash.php 586B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @method static array info(string $hashedValue)
  5. * @method static string make(string $value, array $options = [])
  6. * @method static bool check(string $value, string $hashedValue, array $options = [])
  7. * @method static bool needsRehash(string $hashedValue, array $options = [])
  8. *
  9. * @see \Illuminate\Hashing\BcryptHasher
  10. */
  11. class Hash extends Facade
  12. {
  13. /**
  14. * Get the registered name of the component.
  15. *
  16. * @return string
  17. */
  18. protected static function getFacadeAccessor()
  19. {
  20. return 'hash';
  21. }
  22. }