Trie.php 372 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\facade;
  4. use think\Facade;
  5. /**
  6. * @method static \catcher\library\Trie add(string $word)
  7. * @method static \catcher\library\Trie filter(string $content)
  8. *
  9. * @time 2020年05月22日
  10. */
  11. class Trie extends Facade
  12. {
  13. protected static function getFacadeClass()
  14. {
  15. return \catcher\library\Trie::class;
  16. }
  17. }