File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 226
226
:group 'php-faces
227
227
:tag " PHP Class Modifiers" )
228
228
229
+ (defface php-modifiers-method '((t (:inherit php-keyword)))
230
+ " Face used to highlight method modifiers (final, abstract)"
231
+ :group 'php-faces
232
+ :tag " PHP Method Modifiers" )
233
+
229
234
(define-obsolete-face-alias 'php-annotations-annotation-face 'php-doc-annotation-tag " 1.19.0" )
230
235
231
236
(provide 'php-face )
Original file line number Diff line number Diff line change @@ -1554,6 +1554,9 @@ a completion list."
1554
1554
1555
1555
; ; Class modifiers (abstract, final)
1556
1556
(" \\ (abstract\\ |final\\ )[[:space:]]\\ (?:class\\ )" (1 'php-modifiers-class ))
1557
+
1558
+ ; ; Method modifiers (abstract, final, static)
1559
+ (" \\ (abstract\\ |final\\ )[[:space:]]\\ (?:static[[:space:]]\\ )?\\ (?:public\\ |private\\ |protected\\ )" (1 'php-modifiers-method ))
1557
1560
1558
1561
; ; Highlight variables, e.g. 'var' in '$var' and '$obj->var', but
1559
1562
; ; not in $obj->var()
You can’t perform that action at this time.
0 commit comments