mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-06-22 21:11:38 +02:00
Complete phpdocs of facades with non-static methods
This commit is contained in:
parent
5ddd21fb4d
commit
02fbd4c285
@ -6,6 +6,16 @@ use App\Services\IconStoreService;
|
|||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Support\Facades\Facade;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @method static \App\Services\IconStoreService\IconStoreService setDisk(string $diskName = 'icons')
|
||||||
|
* @method static bool usesDatabase()
|
||||||
|
* @method static void setDatabaseReplication(bool $usesDatabase)
|
||||||
|
* @method static string|null get(string $name)
|
||||||
|
* @method static string|false mimeType(string $name)
|
||||||
|
* @method static bool clear()
|
||||||
|
* @method static bool delete(array|string $names)
|
||||||
|
* @method static bool store(string $name, string $content)
|
||||||
|
* @method static bool exists(string $name)
|
||||||
|
*
|
||||||
* @see \App\Services\IconStoreService
|
* @see \App\Services\IconStoreService
|
||||||
*/
|
*/
|
||||||
class IconStore extends Facade
|
class IconStore extends Facade
|
||||||
|
@ -6,6 +6,12 @@ use App\Services\SettingService;
|
|||||||
use Illuminate\Support\Facades\Facade;
|
use Illuminate\Support\Facades\Facade;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @method static string|int|boolean|null get($setting)
|
||||||
|
* @method static \Illuminate\Support\Collection<string, mixed> all()
|
||||||
|
* @method static void set($setting, $value)
|
||||||
|
* @method static void delete(string $name)
|
||||||
|
* @method static bool isEdited($key)
|
||||||
|
*
|
||||||
* @see \App\Services\SettingService
|
* @see \App\Services\SettingService
|
||||||
*/
|
*/
|
||||||
class Settings extends Facade
|
class Settings extends Facade
|
||||||
|
Loading…
x
Reference in New Issue
Block a user