Prompt in phpstorm: misspelling in wordsLabelsIn
1. Prompt in phpstorm: misspelling in wordsLabelsin. as shown in Figure 1
public static array $typeLables = [
1 => '电话',
2 => '邮箱',
3 => '地址',
self::TYPE_IMAGE => '图片',
4 => '普通内容',
];
2. Click Spelling Error: Rename to… , based on the drop-down option: $typeLabels . as shown in Figure 2
3. When git is submitted, it is found that all the places referenced to $typelables have been renamed to $typelabels. in line with expectations.

