File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -1553,10 +1553,16 @@ a completion list."
1553
1553
(" \\ (?:[[:word:]\\ ]\\ )\\ ([[:space:]]as\\ )" (1 'php-import-declaration ))
1554
1554
1555
1555
; ; Class modifiers (abstract, final)
1556
- (" \\ (abstract\\ |final\\ )[[:space:]]\\ (?:class\\ )" (1 'php-modifiers- class ))
1556
+ (" \\ (abstract\\ |final\\ )[[:space:]]\\ (?:class\\ )" (1 'php-class-modifiers ))
1557
1557
1558
- ; ; Method modifiers (abstract, final, static)
1559
- (" \\ (abstract\\ |final\\ )[[:space:]]\\ (?:static[[:space:]]\\ )?\\ (?:public\\ |private\\ |protected\\ )" (1 'php-modifiers-method ))
1558
+ ; ; Method modifiers (abstract, final)
1559
+ (" \\ (abstract\\ |final\\ )[[:space:]]\\ (?:static\\ |public\\ |private\\ |protected\\ )" (1 'php-method-modifiers ))
1560
+
1561
+ ; ; Method access protection
1562
+
1563
+
1564
+ ; ; Property access protection
1565
+ ; ("\\ (private\\ |protected\\ |public\\ )\\ (?:[[:space:]]const[[:space:]][[:word:]]\\ |[[:space:]]\$[[:word:]]\\ )" (1 'php-property-access))
1560
1566
1561
1567
; ; Highlight variables, e.g. 'var' in '$var' and '$obj->var', but
1562
1568
; ; not in $obj->var()
You can’t perform that action at this time.
0 commit comments