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
PhpAdapter.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Facades; |
| 4 | |
| 5 | use WPStaging\Framework\Adapter\PhpAdapter as WpstgPhpAdapter; |
| 6 | |
| 7 | /** |
| 8 | * @method static bool isCallable(string|nulll $maybeCallable) |
| 9 | * @method static bool jsonValidate(string $maybeJsonString) |
| 10 | */ |
| 11 | class PhpAdapter extends Facade |
| 12 | { |
| 13 | protected static function getFacadeAccessor() |
| 14 | { |
| 15 | return WpstgPhpAdapter::class; |
| 16 | } |
| 17 | } |
| 18 |