PHP编码样式返回;在开关/外壳中
2022-08-30 08:35:57
我们正试图为我们的团队实现新的编码风格指南,当没有发现“中断”时,php codeniffer会在switch case语句上打印警告,例如:
switch ($foo) {
case 1:
return 1;
case 2:
return 2;
default:
return 3;
}
有什么好的理由使用:
switch ($foo) {
case 1:
return 1;
break;
}
??突破是永远达不到的?