| 123456789101112131415161718 | 
							- <?php
 
- namespace app\facade;
 
- use think\Facade;
 
- /**
 
-  * @method getTree(array $array,int $parent_id) static
 
-  * @method getTreeV2(array $array) static
 
-  */
 
- class Tree extends Facade
 
- {
 
-     protected static function getFacadeClass(): string
 
-     {
 
-         return 'app\common\util\Tree';
 
-     }
 
- }
 
 
  |