1234567891011121314151617 |
- <?php
- namespace App\Facades;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static array select($showDay = FALSE, $day = 1, $showMonth = FALSE, $month = 1, $showYear = FALSE);
- * @method static array mood(int $uid, string $typeStr);
- * @method static array sleep(int $uid, string $typeStr);
- */
- class StatisticsFacade extends Facade
- {
- protected static function getFacadeAccessor(){
- return 'StatisticsFacadeRepository';
- }
- }
|