UI
7 months ago
DataEncryption.php
3 months ago
Escape.php
3 years ago
Facade.php
3 years ago
Hooks.php
2 months ago
Info.php
1 year ago
PhpAdapter.php
2 years ago
Sanitize.php
2 months ago
SettingsTable.php
2 months ago
DataEncryption.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Facades; |
| 4 | |
| 5 | use WPStaging\Framework\Security\DataEncryption as SecurityDataEncryption; |
| 6 | |
| 7 | /** |
| 8 | * @method static string encrypt(string|int $value) |
| 9 | * @method static string decrypt(string $value) |
| 10 | * @method static bool isEncrypted(string $value) |
| 11 | */ |
| 12 | class DataEncryption extends Facade |
| 13 | { |
| 14 | protected static function getFacadeAccessor() |
| 15 | { |
| 16 | return SecurityDataEncryption::class; |
| 17 | } |
| 18 | } |
| 19 |