File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 9292
9393{% endif %}{# class.tags.see || class.tags.link #}
9494
95+ {% set methodsList = [] %}
9596#### <span style =" display: none;" >{{ class }}</span > Methods:
9697{# Lista de métodos públicos y protegidos #}
9798{% for method in class .methods | sort_asc %}
99+ {% set methodsList = methodsList | merge ([method .name ]) %}
98100{% if method .visibility != ' private' %}
99101{% include ' method.md.twig' %}
100102{% endif %}
104106
105107#### <span style =" display: none;" >{{ class }}</span > Inherited methods:
106108{# Lista de métodos públicos y protegidos #}
107- {% for method in class .inheritedMethods -%}
109+ {% for method in class .inheritedMethods if method . name not in methodsList -%}
108110 {%- if method .parent in project .indexes .classes %}
109111 {%- set parent_location = ' classes' %}
110112 {%- elseif method .parent in project .indexes .interfaces %}
You can’t perform that action at this time.
0 commit comments