File tree 6 files changed +15
-2
lines changed
6 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -1436,7 +1436,7 @@ a completion list."
1436
1436
" return" " throws" " var" ))
1437
1437
1438
1438
(defconst php-phpdoc-font-lock-doc-comments
1439
- `((" {@[-[:alpha:]]+\\ s-\\ ([^}]*\\ )}" ; "{@foo ...}" markup.
1439
+ `((" {@[-[:alpha:]]+\\ s-* \\ ([^}]*\\ )}" ; "{@foo ...}" markup.
1440
1440
(0 'php-doc-annotation-tag prepend nil )
1441
1441
(1 'php-string prepend nil ))
1442
1442
(,(rx (group " $" ) (group (in " A-Za-z_" ) (* (in " 0-9A-Za-z_" ))))
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /**
4
+ * {@inheritdoc}
5
+ */
Original file line number Diff line number Diff line change
1
+ ; ; -*- mode : emacs-lisp -*-
2
+ ((" <?php" . php-php-tag)
3
+ (" \n\n " )
4
+ (" /**\n * " . font-lock-doc-face )
5
+ (" {@inheritdoc}" php-doc-annotation-tag font-lock-doc-face )
6
+ (" \n */" . font-lock-doc-face )
7
+ (" \n " ))
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -672,7 +672,8 @@ Meant for `php-mode-test-issue-503'."
672
672
:faces (cond ((eq emacs-major-version 24 ) " .24.faces" )
673
673
((version<= " 27" emacs-version) " .27.faces" )
674
674
(t t ))))
675
- (with-php-mode-test (" doc-comment-return-type.php" :faces t ))
675
+ (with-php-mode-test (" doc-comment/return-type.php" :faces t ))
676
+ (with-php-mode-test (" doc-comment/inheritdoc.php" :faces t ))
676
677
(with-php-mode-test (" lang/types/cast.php" :faces t ))
677
678
(with-php-mode-test (" lang/types/function.php" :faces t ))
678
679
(with-php-mode-test (" lang/types/keywords.php" :faces t ))
You can’t perform that action at this time.
0 commit comments