|
202 | 202 | :tag "PHPDoc Class Name")
|
203 | 203 |
|
204 | 204 | (defface php-class-declaration '((t (:inherit php-keyword)))
|
205 |
| - "Face used to highlight class declaration keywords" |
| 205 | + "Face used to highlight class declaration keywords." |
206 | 206 | :group 'php-faces
|
207 | 207 | :tag "PHP Class Declaration")
|
208 | 208 |
|
209 | 209 | (defface php-class-declaration-spec '((t (:inherit php-keyword)))
|
210 |
| - "Face used to highlight class declaration specification keywords (implements, extends)" |
| 210 | + "Face used to highlight class declaration specification keywords (implements, extends)." |
211 | 211 | :group 'php-faces
|
212 | 212 | :tag "PHP Class Declaration Specification")
|
213 | 213 |
|
|
217 | 217 | :tag "PHP Namespace Declaration")
|
218 | 218 |
|
219 | 219 | (defface php-import-declaration '((t (:inherit php-keyword)))
|
220 |
| - "Face used to highlight import statements (use ... as ...)" |
| 220 | + "Face used to highlight import statements (use ... as ...)." |
221 | 221 | :group 'php-faces
|
222 | 222 | :tag "PHP Import Statement")
|
223 | 223 |
|
224 | 224 | (defface php-class-modifiers '((t (:inherit php-keyword)))
|
225 |
| - "Face used to highlight class modifiers (final, abstract)" |
| 225 | + "Face used to highlight class modifiers (final, abstract)." |
226 | 226 | :group 'php-faces
|
227 | 227 | :tag "PHP Class Modifiers")
|
228 | 228 |
|
229 | 229 | (defface php-method-modifiers '((t (:inherit php-keyword)))
|
230 |
| - "Face used to highlight method modifiers (final, abstract)" |
| 230 | + "Face used to highlight method modifiers (final, abstract)." |
231 | 231 | :group 'php-faces
|
232 | 232 | :tag "PHP Method Modifiers")
|
233 | 233 |
|
| 234 | +(defface php-method-access '((t (:inherit php-keyword))) |
| 235 | + "Face used to highlight method access keywords (public, protected, private)." |
| 236 | + :group 'php-faces |
| 237 | + :tag "PHP Method Access") |
| 238 | + |
| 239 | +(defface php-method-static '((t (:inherit php-keyword))) |
| 240 | + "Face used to highlight static keyword in method declaration." |
| 241 | + :group 'php-faces |
| 242 | + :tag "PHP Method Static") |
| 243 | + |
234 | 244 | (defface php-property-access '((t (:inherit php-keyword)))
|
235 |
| - "Face used to highlight property access keywords (public, protected, public)" |
| 245 | + "Face used to highlight property access keywords (public, protected, private)." |
236 | 246 | :group 'php-faces
|
237 | 247 | :tag "PHP Property Access")
|
238 | 248 |
|
|
0 commit comments