FileFacade.php 444 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\facade;
  4. use think\Facade;
  5. /**
  6. * @see \app\utils\FileUtils
  7. * @package app\facade
  8. * @mixin \app\utils\FileUtils
  9. * @method static \think\Image waterMark()
  10. * @method static \think\Image thumbnail()
  11. * @method static \think\file\UploadedFile downloadUrlImg()
  12. */
  13. class FileFacade extends Facade
  14. {
  15. protected static function getFacadeClass()
  16. {
  17. return 'app\utils\FileUtils';
  18. }
  19. }