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
SettingsTable.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Framework\Facades; |
| 4 | |
| 5 | use WPStaging\Framework\Settings\SettingsTable as SettingsTableService; |
| 6 | |
| 7 | /** |
| 8 | * @method static mixed get(string $name, mixed $default = null) |
| 9 | * @method static bool set(string $name, mixed $value) |
| 10 | * @method static bool delete(string $name) |
| 11 | * @method static bool has(string $name) |
| 12 | * @method static string getFullTableName() |
| 13 | * @method static void ensureTable() |
| 14 | * @method static void invalidateCache() |
| 15 | */ |
| 16 | class SettingsTable extends Facade |
| 17 | { |
| 18 | /** |
| 19 | * @return string |
| 20 | */ |
| 21 | protected static function getFacadeAccessor() |
| 22 | { |
| 23 | return SettingsTableService::class; |
| 24 | } |
| 25 | } |
| 26 |