mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
16 lines
211 B
PHP
16 lines
211 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Shared\Facade;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
class Reminders extends Facade
|
|
{
|
|
|
|
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'reminders';
|
|
}
|
|
|
|
} |