Path : /var/www/html/solarwindia/vendor/laravel/framework/src/Illuminate/Support/Facades/ |
Current File : //var/www/html/solarwindia/vendor/laravel/framework/src/Illuminate/Support/Facades/Crypt.php |
<?php namespace Illuminate\Support\Facades; /** * @method static string encrypt(string $value, bool $serialize = true) * @method static string decrypt(string $payload, bool $unserialize = true) * * @see \Illuminate\Encryption\Encrypter */ class Crypt extends Facade { /** * Get the registered name of the component. * * @return string */ protected static function getFacadeAccessor() { return 'encrypter'; } }