File tree Expand file tree Collapse file tree 2 files changed +6
-19
lines changed
tools/php_api_ref/.phpdoc/template Expand file tree Collapse file tree 2 files changed +6
-19
lines changed Original file line number Diff line number Diff line change 5252 </a >
5353 <nav class =" md-nav" >
5454 <ul class =" md-nav__list" >
55- {% set treated_properties = [] %}
5655 {% for property in properties | sortByVisibility %}
57- {% if property.__toString () not in treated_properties %}
58- <li class =" md-nav__item level-2" >
59- <a href =" {{ link(property ) }}" title =" {{ property .name }}" class =" md-nav__link" >
60- {{ property .name }}
61- </a >
62- </li >
63- {% set treated_properties = treated_properties | merge ([property.__toString ()]) %}
64- {% endif %}
56+ <li class =" md-nav__item level-2" >
57+ <a href =" {{ link(property ) }}" title =" {{ property .name }}" class =" md-nav__link" >
58+ {{ property .name }}
59+ </a >
60+ </li >
6561 {% endfor %}
6662 </ul >
6763 </nav >
Original file line number Diff line number Diff line change 11{% set properties = properties(node )| sortByVisibility %}
2- {% set explorable_properties = properties(node )| sortByVisibility %}
3- {% set treated_properties = [] %}
42
53{% if properties is not empty %}
64 <h2 id =" properties" >
97 </h2 >
108
119 {% for property in properties %}
12- {% if property.__toString () not in treated_properties %}
13- {% for explored_property in explorable_properties %}
14- {% if explored_property.__toString () == property.__toString () %}
15- {% include ' components/property.html.twig' with {' property' : explored_property } %}
16- {% endif %}
17- {% endfor %}
18- {% set treated_properties = treated_properties | merge ([property.__toString ()]) %}
19- {% endif %}
10+ {% include ' components/property.html.twig' %}
2011 {% endfor %}
2112 </section >
2213{% endif %}
You can’t perform that action at this time.
0 commit comments