Upload.php 222 B

1234567891011121314151617
  1. <?php
  2. namespace app\facade;
  3. use think\Facade;
  4. /**
  5. * @method file() static
  6. */
  7. class Upload extends Facade
  8. {
  9. protected static function getFacadeClass(): string
  10. {
  11. return 'app\common\util\Upload';
  12. }
  13. }