| 123456789101112131415161718192021222324252627 |
- <?php namespace App\Facades\Servers\Safe;
- use Illuminate\Support\Facades\Facade;
- /**
- * 反欺诈
- *
- * @method mixed localCheck($content) 只用本地词库检测
- * @method mixed textModeration(string $content)检测内容
- *
- * @see \App\Servers\Safe\TextModeration
- *
- */
- class TextModeration extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return '\App\Servers\Safe\TextModeration';
- }
- }
- ?>
|