File tree 3 files changed +28
-2
lines changed
3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 15
15
(defconst php-mode-version-number " 1.19.0"
16
16
" PHP Mode version number." )
17
17
18
- (defconst php-mode-modified " 2018-04-08 "
18
+ (defconst php-mode-modified " 2018-04-23 "
19
19
" PHP Mode build date." )
20
20
21
21
; ; This file is free software; you can redistribute it and/or
@@ -1700,7 +1700,7 @@ a completion list."
1700
1700
1701
1701
; ; Highlight return types in functions and methods.
1702
1702
(" function.+:\\ s-*\\ ??\\ (\\ (?:\\ sw\\ |\\ s_\\ )+\\ )" 1 font-lock-type-face )
1703
- (" )\\ s-*:\\ s-*\\ ??\\ (\\ (?:\\ sw\\ |\\ s_\\ )+\\ )\\ s-*\{ " 1 font-lock-type-face )
1703
+ (" )\\ s-*:\\ s-*\\ ??\\ (\\ (?:\\ sw\\ |\\ s_\\ )+\\ )\\ s-*\\ (?: \{ \\ |; \\ ) " 1 font-lock-type-face )
1704
1704
1705
1705
; ; Highlight class names used as nullable type hints
1706
1706
(" \\ ?\\ (\\ (:?\\ sw\\ |\\ s_\\ )+\\ )\\ s-+\\ $" 1 font-lock-type-face )
Original file line number Diff line number Diff line change @@ -125,6 +125,12 @@ public function getNullableObject(
125
125
): ?stdClass {
126
126
}
127
127
128
+ abstract public function getOtherObject (
129
+ ): stdClass ;
130
+
131
+ abstract public function getOtherNullableObject (
132
+ ): ?stdClass ;
133
+
128
134
public function getNsObject (
129
135
): \path \to \my \Object {
130
136
}
Original file line number Diff line number Diff line change 343
343
(" (\n ): ?" )
344
344
(" stdClass" . font-lock-type-face )
345
345
(" {\n }\n\n " )
346
+ (" abstract" . php-keyword)
347
+ (" " )
348
+ (" public" . php-keyword)
349
+ (" " )
350
+ (" function" . php-keyword)
351
+ (" " )
352
+ (" getOtherObject" . php-function-name)
353
+ (" (\n ): " )
354
+ (" stdClass" . font-lock-type-face )
355
+ (" ;\n\n " )
356
+ (" abstract" . php-keyword)
357
+ (" " )
358
+ (" public" . php-keyword)
359
+ (" " )
360
+ (" function" . php-keyword)
361
+ (" " )
362
+ (" getOtherNullableObject" . php-function-name)
363
+ (" (\n ): ?" )
364
+ (" stdClass" . font-lock-type-face )
365
+ (" ;\n\n " )
346
366
(" public" . php-keyword)
347
367
(" " )
348
368
(" function" . php-keyword)
You can’t perform that action at this time.
0 commit comments