File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed
Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,21 @@ OUTPUT_DIRECTORY = doc
99JAVADOC_AUTOBRIEF = YES
1010QT_AUTOBRIEF = YES
1111WARN_NO_PARAMDOC = YES
12+ ALIASES = "type{1}=<b> \1 </b>:" \
13+ "types{2}=<b> \1 </b> or <b> \2 </b>:" \
14+ "types{3}=<b> \1 </b>, <b> \2 </b>, or <b> \3 </b>:" \
15+ "access=\par Access:\n" \
16+ "private=\access private" \
17+ "protected=\access protected" \
18+ "copyright=\note" \
19+ "license=\note" \
20+ "inheritDoc=\inheritdoc" \
21+ "codeCoverageIgnore=" \
22+ "codingStandardsIgnoreEnd=" \
23+ "codingStandardsIgnoreStart=" \
24+ "phan=" \
25+ "suppress=" \
26+ "stable=Stable"
1227INPUT = README.md src/
1328FILE_PATTERNS = *.php
1429RECURSIVE = YES
Original file line number Diff line number Diff line change 3232$ replace = '$1$2 $4 $3$4 ' ;
3333$ source = preg_replace ( $ regexp , $ replace , $ source );
3434
35- // Remove @inheritDoc
36- $ regexp = '#@inheritDoc# ' ;
37- $ replace = '' ;
38- $ source = preg_replace ( $ regexp , $ replace , $ source );
39-
4035// change "@return $this" to '@return [ClassName]'
4136$ tokens = token_get_all ( $ source );
4237$ classes = [];
You can’t perform that action at this time.
0 commit comments