Skip to content

Commit 20cd708

Browse files
committed
Add annotate
1 parent ebf549d commit 20cd708

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

src/Facades/Soar.php

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,29 @@
1515
/**
1616
* Soar 门面.
1717
*
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
3740
*
38-
* @see \Guanguans\SoarPHP\Soar
3941
* @see \Guanguans\LaravelSoar\Soar
4042
*/
4143
class Soar extends Facade

0 commit comments

Comments
 (0)