ControllerUtils.php 428 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\common\facade;
  4. use think\Facade;
  5. /**
  6. * @see \app\common\utils\ControllerUtils
  7. * @package app\common\facade
  8. * @mixin \app\common\utils\ControllerUtils
  9. * @method static void makeModel()
  10. * @method static string codeModel()
  11. */
  12. class ControllerUtils extends Facade
  13. {
  14. protected static function getFacadeClass()
  15. {
  16. return 'app\common\utils\ControllerUtils';
  17. }
  18. }