gpt4 book ai didi

php - 关联数组对齐 => 与 PHP-CS-Fixer

转载 作者:搜寻专家 更新时间:2023-10-31 20:36:33 27 4
gpt4 key购买 nike

关联数组 => 应该与 PHP-CS-Fixer 对齐吗?

$array = [
1 => 'a',
'1' => 'b',
1.5 => 'c',
true => 'd',
];

$array = [
1 => 'a',
'1' => 'b',
1.5 => 'c',
true => 'd',
];

我没有在 https://github.com/FriendsOfPHP/PHP-CS-Fixer 中找到过滤器

最佳答案

现在这是使用较新版本的 PHP-CS-Fixer(v2、v3)运行 align_double_arrow 的正确方法,它将在双箭头('=>')之后对齐数组元素:

php-cs-fixer fix path \
--rules='{"binary_operator_spaces": {"operators": {"=>": "align_single_space_minimal"}}}'

更多阅读: https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/3.0/doc/rules/operator/binary_operator_spaces.rst

关于php - 关联数组对齐 => 与 PHP-CS-Fixer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33670611/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com