关联数组align =>与PHP-CS-Fixer
作者:互联网
应该关联数组=>应该与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中找到过滤器
解决方法:
过滤器是align_double_arrow
标签:phpcs,php 来源: https://codeday.me/bug/20191119/2036252.html