Skip to content

Commit 744fdb5

Browse files
committed
Added "implements" to the list of excluded tags
1 parent 4cca0eb commit 744fdb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/php_api_ref/.phpdoc/template/components/tags.html.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
{% set tags_to_exlude = ['todo', 'var', 'param', 'property', 'property-read', 'property-write', 'method', 'return', 'package', 'api', 'final', 'since',
2-
'template', 'template-implements', 'template-extends', 'template-covariant'] %}
3-
{% set tags = node.tags|filter((v,k) => k not in tags_to_exlude and not (k starts with 'phpstan-')) %}
1+
{% set excluded_tags = ['todo', 'var', 'param', 'property', 'property-read', 'property-write', 'method', 'return', 'package', 'api', 'final', 'since',
2+
'template', 'template-implements', 'template-extends', 'template-covariant', 'implements'] %}
3+
{% set tags = node.tags|filter((v,k) => k not in excluded_tags and not (k starts with 'phpstan-')) %}
44
{% set has_tags = false %}
55
{% for name,seriesOfTag in tags %}
66
{% if name in ['see', 'uses'] %}

0 commit comments

Comments
 (0)