PhpStorm - 防止数组括号对齐

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PhpStorm - 防止数组括号对齐相关的知识,希望对你有一定的参考价值。

phpStorm正在对齐数组中的括号。

DB::table('something')->create([
                                   'title' => 'John',
                                   'description' => 'Doe',
                               ]); // I don't want to align it this way...


DB::table('something')->create([
    'title' => 'John',
    'description' => 'Doe',
]); // But this way...

我在哪里更改Settings/Preferences > Editor > Code Style > PHP

答案

终于搞清楚了!

转到首选项>编辑器>代码样式> PHP>环绕和大括号。在Align when multiline下取消选中Function call arguments

PhpStorm Preferences Screenshot

以上是关于PhpStorm - 防止数组括号对齐的主要内容,如果未能解决你的问题,请参考以下文章

phpstorm中数组格式对齐

phpstorm怎么格式化代码

phpstorm中怎么把phpscript运行变成Javascript

phpstorm 自动格式化代码 按等号 按键值对 自动对齐

phpstorm 实用快捷键 和 注释

如何将文本与 phpstorm 或 webstorm 中的特定字符对齐?