mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-04 04:24:26 +00:00
Add some method annotators, see if this helps with Scrutinizer issues.
This commit is contained in:
@@ -22,11 +22,18 @@ declare(strict_types=1);
|
||||
|
||||
namespace FireflyIII\Support\Facades;
|
||||
|
||||
use FireflyIII\Models\Preference;
|
||||
use FireflyIII\User;
|
||||
use Illuminate\Support\Facades\Facade;
|
||||
|
||||
/**
|
||||
* @codeCoverageIgnore
|
||||
* Class Preferences.
|
||||
*
|
||||
* @method Preference set(string $name, $value)
|
||||
* @method Preference get(string $name, $value)
|
||||
* @method Preference|null getForUser(User $user, string $name, $default)
|
||||
* @method void mark()
|
||||
*/
|
||||
class Preferences extends Facade
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user