如何在PhpStorm中的变量和运算符之间留出空间?

时间:2019-12-29 05:22:01

标签: phpstorm reformat

我正在使用Mac和Windows,但是代码重新格式化在Mac和Windows上的工作方式有所不同。

在Mac上

return response()->json([
    'access_token' => $jwtToken,
    'token_type'   => 'bearer',
    'expires_in'   => Auth::guard()->factory()->getTTL() * 60
]);

在Windows上

return response()->json([
    'access_token' => $jwtToken,
    'token_type' => 'bearer',
    'expires_in' => Auth::guard()->factory()->getTTL() * 60
]);

我想像在Mac上一样重新格式化代码。

如何调整代码重新格式化规则?

1 个答案:

答案 0 :(得分:3)

设置->编辑器->代码样式-> PHP->包装和花括号->数组初始化程序->对齐键值对

enter image description here