2020-06-17 23:02:12 +08:00
|
|
|
<?php
|
2020-06-20 16:57:37 +08:00
|
|
|
namespace catcher\facade;
|
|
|
|
|
|
|
|
use think\Facade;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method static \catcher\library\Trie add(string $word)
|
|
|
|
* @method static \catcher\library\Trie filter(string $content)
|
|
|
|
*
|
|
|
|
* @time 2020年05月22日
|
|
|
|
*/
|
|
|
|
class Trie extends Facade
|
|
|
|
{
|
|
|
|
protected static function getFacadeClass()
|
|
|
|
{
|
|
|
|
return \catcher\library\Trie::class;
|
|
|
|
}
|
|
|
|
}
|