FileUtils.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. }
  21. =======
  22. <?php
  23. declare(strict_types=1);
  24. namespace app\common\facade;
  25. use think\Facade;
  26. /**
  27. * @see \app\common\utils\FileUtils
  28. * @package app\common\facade
  29. * @mixin \app\common\utils\FileUtils
  30. * @method static \think\Image waterMark()
  31. * @method static \think\Image thumbnail()
  32. * @method static \think\file\UploadedFile downloadUrlImg()
  33. */
  34. class FileUtils extends Facade
  35. {
  36. protected static function getFacadeClass()
  37. {
  38. return 'app\common\utils\FileUtils';
  39. }
  40. }
  41. >>>>>>> 78b76253c8ce5873016cf837373af5e30ac80c86