Skip to content

Commit e85d963

Browse files
authored
Merge pull request #461 from fabacino/bugfix/fix-return-type-highlighting
Fix highlighting of return types for abstract functions
2 parents 52ae90a + 06da1d7 commit e85d963

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

php-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
(defconst php-mode-version-number "1.19.0"
1616
"PHP Mode version number.")
1717

18-
(defconst php-mode-modified "2018-04-08"
18+
(defconst php-mode-modified "2018-04-23"
1919
"PHP Mode build date.")
2020

2121
;; This file is free software; you can redistribute it and/or
@@ -1700,7 +1700,7 @@ a completion list."
17001700

17011701
;; Highlight return types in functions and methods.
17021702
("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)
17041704

17051705
;; Highlight class names used as nullable type hints
17061706
("\\?\\(\\(:?\\sw\\|\\s_\\)+\\)\\s-+\\$" 1 font-lock-type-face)

tests/type-hints.php

+6
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,12 @@ public function getNullableObject(
125125
): ?stdClass {
126126
}
127127

128+
abstract public function getOtherObject(
129+
): stdClass;
130+
131+
abstract public function getOtherNullableObject(
132+
): ?stdClass;
133+
128134
public function getNsObject(
129135
): \path\to\my\Object {
130136
}

tests/type-hints.php.faces

+20
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,26 @@
343343
("(\n ): ?")
344344
("stdClass" . font-lock-type-face)
345345
(" {\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 ")
346366
("public" . php-keyword)
347367
(" ")
348368
("function" . php-keyword)

0 commit comments

Comments
 (0)