如何在 PhpStorm 中在变量和运算符之间设置 space?
How to make space between variable and operator in PhpStorm?
我正在使用 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 那样重新格式化代码。
如何调整代码重新格式化规则?
设置->编辑器->代码风格->PHP->环绕和大括号->数组初始化->对齐键值对
我正在使用 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 那样重新格式化代码。
如何调整代码重新格式化规则?
设置->编辑器->代码风格->PHP->环绕和大括号->数组初始化->对齐键值对