@@ -77,7 +77,7 @@ use Illuminate\Support\Str;
77
77
78
78
class SoarController extends Controller
79
79
{
80
- public function sqlScore ()
80
+ public function sqlScores ()
81
81
{
82
82
// 创建表
83
83
DB::select(
@@ -496,38 +496,38 @@ app('soar'); // 获取 Soar 实例
496
496
/**
497
497
* Soar 门面.
498
498
*
499
- * @method static \self create(array $options = [], null|string $soarPath = null)
499
+ * @method static \Guanguans\LaravelSoar\Soar create(array $options = [], null|string $soarPath = null)
500
500
* @method static string help()
501
501
* @method static string version()
502
- * @method static \self clone()
502
+ * @method static \Guanguans\LaravelSoar\Soar clone()
503
503
* @method static array arrayScores(array|string $sqls, int $depth = 512, int $options = 0)
504
504
* @method static string jsonScores(array|string $sqls)
505
505
* @method static string htmlScores(array|string $sqls)
506
506
* @method static string markdownScores(array|string $sqls)
507
507
* @method static string scores(array|string $sqls)
508
- * @method static \self addOptions(array $options)
509
- * @method static \self addOption(string $key, void $value)
510
- * @method static \self removeOptions(array $keys)
511
- * @method static \self removeOption(string $key)
512
- * @method static \self onlyOptions(array $keys = ['-test-dsn','-online-dsn'])
513
- * @method static \self onlyOption(string $key)
514
- * @method static \self setOptions(array $options)
515
- * @method static \self setOption(string $key, void $value)
516
- * @method static \self mergeOptions(array $options)
517
- * @method static \self mergeOption(string $key, void $value)
508
+ * @method static \Guanguans\LaravelSoar\Soar addOptions(array $options)
509
+ * @method static \Guanguans\LaravelSoar\Soar addOption(string $key, void $value)
510
+ * @method static \Guanguans\LaravelSoar\Soar removeOptions(array $keys)
511
+ * @method static \Guanguans\LaravelSoar\Soar removeOption(string $key)
512
+ * @method static \Guanguans\LaravelSoar\Soar onlyOptions(array $keys = ['-test-dsn','-online-dsn'])
513
+ * @method static \Guanguans\LaravelSoar\Soar onlyOption(string $key)
514
+ * @method static \Guanguans\LaravelSoar\Soar setOptions(array $options)
515
+ * @method static \Guanguans\LaravelSoar\Soar setOption(string $key, void $value)
516
+ * @method static \Guanguans\LaravelSoar\Soar mergeOptions(array $options)
517
+ * @method static \Guanguans\LaravelSoar\Soar mergeOption(string $key, void $value)
518
518
* @method static array getOptions()
519
519
* @method static void getOption(string $key, void $default = null)
520
520
* @method static string getSerializedNormalizedOptions()
521
521
* @method static array getNormalizedOptions()
522
522
* @method static string getSoarPath()
523
- * @method static \self setSoarPath(string $soarPath)
523
+ * @method static \Guanguans\LaravelSoar\Soar setSoarPath(string $soarPath)
524
524
* @method static void dd(void ...$args)
525
- * @method static \self dump(void ...$args)
525
+ * @method static \Guanguans\LaravelSoar\Soar dump(void ...$args)
526
526
* @method static string run(array|string $withOptions = [], null|callable $processTapper = null, null|callable $callback = null)
527
527
* @method static \Guanguans\LaravelSoar\Soar|\Illuminate\Support\HigherOrderTapProxy tap(null|callable $callback = null)
528
528
*
529
529
* @see \Guanguans\LaravelSoar\Soar
530
- */
530
+ */
531
531
class Soar{}
532
532
```
533
533
</details >
@@ -546,9 +546,9 @@ namespace Illuminate\Database\Eloquent {
546
546
* @method array toSoarArrayScores()
547
547
* @method void dumpSoarArrayScores()
548
548
* @method void ddSoarArrayScores()
549
- * @method string toSoarJsonScores()
550
- * @method void dumpSoarJsonScores()
551
- * @method void ddSoarJsonScores()
549
+ * @method string toSoarJsonScores(int $options = 0, int $depth = 128 )
550
+ * @method void dumpSoarJsonScores(int $options = 0, int $depth = 128 )
551
+ * @method void ddSoarJsonScores(int $options = 0, int $depth = 128 )
552
552
* @method string toSoarHtmlScores()
553
553
* @method void echoSoarHtmlScores()
554
554
* @method void exitSoarHtmlScores()
0 commit comments