Tree.php 290 B

123456789101112131415161718
  1. <?php
  2. namespace app\facade;
  3. use think\Facade;
  4. /**
  5. * @method getTree(array $array,int $parent_id) static
  6. * @method getTreeV2(array $array) static
  7. */
  8. class Tree extends Facade
  9. {
  10. protected static function getFacadeClass(): string
  11. {
  12. return 'app\common\util\Tree';
  13. }
  14. }