Crypt.php 461B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @method static string encrypt(string $value, bool $serialize = true)
  5. * @method static string decrypt(string $payload, bool $unserialize = true)
  6. *
  7. * @see \Illuminate\Encryption\Encrypter
  8. */
  9. class Crypt extends Facade
  10. {
  11. /**
  12. * Get the registered name of the component.
  13. *
  14. * @return string
  15. */
  16. protected static function getFacadeAccessor()
  17. {
  18. return 'encrypter';
  19. }
  20. }