You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Crypt.php 557B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @method static string encrypt($value, bool $serialize = true)
  5. * @method static string encryptString(string $value)
  6. * @method static string decrypt($payload, bool $unserialize = true)
  7. * @method static string decryptString(string $payload)
  8. *
  9. * @see \Illuminate\Encryption\Encrypter
  10. */
  11. class Crypt 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 'encrypter';
  21. }
  22. }