| 123456789101112131415161718192021 | 
							- <?php
 
- declare(strict_types=1);
 
- namespace app\common\facade;
 
- use think\Facade;
 
- /**
 
-  * @see \app\common\utils\ControllerUtils
 
-  * @package app\common\facade
 
-  * @mixin \app\common\utils\ControllerUtils
 
-  * @method static void makeModel()
 
-  * @method static string codeModel()
 
-  */
 
- class ControllerUtils extends Facade
 
- {
 
-     protected static function getFacadeClass()
 
-     {
 
-         return 'app\common\utils\ControllerUtils';
 
-     }
 
- }
 
 
  |