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 - 防止数组括号对齐的主要内容,如果未能解决你的问题,请参考以下文章
phpstorm中怎么把phpscript运行变成Javascript