From abf794c74f612517fd1ff9d9f42241c8ab8655fb Mon Sep 17 00:00:00 2001 From: Adrien Dupuis <61695653+adriendupuis@users.noreply.github.com> Date: Thu, 4 Jul 2024 10:18:47 +0200 Subject: [PATCH] PHP API Ref: exclude `@template-implements` --- tools/php_api_ref/.phpdoc/template/components/tags.html.twig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/php_api_ref/.phpdoc/template/components/tags.html.twig b/tools/php_api_ref/.phpdoc/template/components/tags.html.twig index 9d70220226..9be24f434b 100644 --- a/tools/php_api_ref/.phpdoc/template/components/tags.html.twig +++ b/tools/php_api_ref/.phpdoc/template/components/tags.html.twig @@ -1,4 +1,5 @@ -{% set tags_to_exlude = ['todo', 'var', 'param', 'property', 'property-read', 'property-write', 'method', 'return', 'package', 'api', 'final', 'since', 'template', 'template-extends', 'template-covariant'] %} +{% set tags_to_exlude = ['todo', 'var', 'param', 'property', 'property-read', 'property-write', 'method', 'return', 'package', 'api', 'final', 'since', + 'template', 'template-implements', 'template-extends', 'template-covariant'] %} {% set tags = node.tags|filter((v,k) => k not in tags_to_exlude and not (k starts with 'phpstan-')) %} {% set has_tags = false %} {% for name,seriesOfTag in tags %}