我设法安装并运行PHP CodeSniffer。我还设法写了自己的自定义嗅探。
有一个我无法弄清楚的问题 - 如何覆盖主$allowedTypes
类中定义的PHP_CodeSniffer
变量:
public static $allowedTypes = array(
'array',
'boolean',
'float',
'integer',
'mixed',
'object',
'string',
'resource',
'callable',
);
我想添加' bool'和' int'这个数组的选项,但没有猴子修补核心存储库。
答案 0 :(得分:0)