-1

使用 Laravel,我的内核文件$routeMiddleware像往常一样具有我的属性数组。

protected $routeMiddleware = [
  'access' => \App\Middleware\AllowAccess::class,
  'auth' => \App\Middleware\Authenticate::class,
  ...

正在更改为此运行我运行修复程序:

protected $routeMiddleware = [
  'access'         => \App\Middleware\AllowAccess::class,
  'auth'             => \App\Middleware\Authenticate::class,
  ...

我的修复规则集如下所示:

$config->setRules([
  '@PSR2' => true,
  'array_syntax' => ['syntax' => 'short'],
  'ordered_imports' => ['sort_algorithm' => 'length'],
  'no_unused_imports' => true,
])
->setIndent("\t")
->setFinder($finder);

我可以添加什么规则来解决这个问题?

4

1 回答 1

0

我在这里找到了关于数组的有趣规则。

您可以尝试其中一些并告诉我它是否符合您的问题吗?

    'no_multiline_whitespace_around_double_arrow' => true,
    'trim_array_spaces'                   => true,
    'object_operator_without_whitespace'  => true,
于 2021-10-09T05:43:56.260 回答