|
15 | 15 | /**
|
16 | 16 | * Soar 门面.
|
17 | 17 | *
|
18 |
| - * @method static string score(string $sql) // SQL 评分 |
19 |
| - * @method static array arrayScore(string $sql) // SQL 数组格式评分 |
20 |
| - * @method static string jsonScore(string $sql) // SQL json 格式评分 |
21 |
| - * @method static string htmlScore(string $sql) // SQL html 格式评分 |
22 |
| - * @method static string mdScore(string $sql) // SQL markdown 格式评分 |
23 |
| - * @method static string explain(string $sql) // explain 解读信息 |
24 |
| - * @method static string mdExplain(string $sql) // markdown 格式 explain 解读信息 |
25 |
| - * @method static string htmlExplain(string $sql) // html 格式 explain 解读信息 |
26 |
| - * @method static null|string syntaxCheck(string $sql) // 语法检查 |
27 |
| - * @method static string fingerPrint(string $sql) // SQL 指纹 |
28 |
| - * @method static string pretty(string $sql) // 格式化 SQL |
29 |
| - * @method static string md2html(string $sql) // markdown 转 html |
30 |
| - * @method static string help() // Soar 帮助 |
31 |
| - * @method static null|string exec(string $command) // 执行任意 Soar 命令 |
32 |
| - * @method static string getSoarPath() // 获取 Soar 路径 |
33 |
| - * @method static array getOptions() // 获取 Soar 配置选项 |
34 |
| - * @method static \Guanguans\SoarPHP\Soar setSoarPath(string $soarPath) // 设置 Soar 路径 |
35 |
| - * @method static \Guanguans\SoarPHP\Soar setOption(string $key, $value) // 设置 Soar 配置选项 |
36 |
| - * @method static \Guanguans\SoarPHP\Soar setOptions(array $options) // 批量设置 Soar 配置选项 |
| 18 | + * @method static string score(string $sql) // SQL 评分 |
| 19 | + * @method static array arrayScore(string $sql) // SQL 数组格式评分 |
| 20 | + * @method static string jsonScore(string $sql) // SQL json 格式评分 |
| 21 | + * @method static string htmlScore(string $sql) // SQL html 格式评分 |
| 22 | + * @method static string mdScore(string $sql) // SQL markdown 格式评分 |
| 23 | + * @method static string explain(string $sql) // explain 解读信息 |
| 24 | + * @method static string mdExplain(string $sql) // markdown 格式 explain 解读信息 |
| 25 | + * @method static string htmlExplain(string $sql) // html 格式 explain 解读信息 |
| 26 | + * @method static null|string syntaxCheck(string $sql) // 语法检查 |
| 27 | + * @method static string fingerPrint(string $sql) // SQL 指纹 |
| 28 | + * @method static string pretty(string $sql) // 格式化 SQL |
| 29 | + * @method static string md2html(string $sql) // markdown 转 html |
| 30 | + * @method static string help() // Soar 帮助 |
| 31 | + * @method static null|string exec(string $command) // 执行任意 Soar 命令 |
| 32 | + * @method static string getSoarPath() // 获取 Soar 路径 |
| 33 | + * @method static array getOptions() // 获取 Soar 配置选项 |
| 34 | + * @method static \Guanguans\LaravelSoar\Soar setSoarPath(string $soarPath) // 设置 Soar 路径 |
| 35 | + * @method static \Guanguans\LaravelSoar\Soar setOption(string $key, $value) // 设置 Soar 配置选项 |
| 36 | + * @method static \Guanguans\LaravelSoar\Soar setOptions(array $options) // 批量设置 Soar 配置选项 |
| 37 | + * @method static \Guanguans\LaravelSoar\Soar|\Illuminate\Support\HigherOrderTapProxy tap($callback = null) |
| 38 | + * |
| 39 | + * @mixin \Illuminate\Support\Traits\Macroable |
37 | 40 | *
|
38 |
| - * @see \Guanguans\SoarPHP\Soar |
39 | 41 | * @see \Guanguans\LaravelSoar\Soar
|
40 | 42 | */
|
41 | 43 | class Soar extends Facade
|
|
0 commit comments