FileUtils.php 491 B

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