{% extends 'layout.html.twig' %} {% block content %}

{{ node.parent.fullyQualifiedStructuralElementName }}{{ node.name }}

{% if node.children|length > 0 %}

Namespaces

{% for namespace in node.children|sort_asc %} {% endfor %}
{{ namespace|route('class:short')|raw }}
{% endif %} {% if node.traits|length > 0 %}

Traits

{% for trait in node.traits|sort_asc %} {% endfor %}
{{ trait|route('class:short')|raw }} {{ trait.summary }}
{% endif %} {% if node.interfaces|length > 0 %}

Interfaces

{% for interface in node.interfaces|sort_asc %} {% endfor %}
{{ interface|route('class:short')|raw }} {{ interface.summary }}
{% endif %} {% if node.classes|length > 0 %}

Classes

{% for class in node.classes|sort_asc %} {% endfor %}
{{ class|route('class:short')|raw }} {{ class.summary }}
{% endif %}
{% if node.constants|length > 0 %}

Constants

{% for constant in node.constants|sort_asc %} {{ block('constant') }} {% endfor %} {% endif %} {% if node.functions|length > 0 %}

Functions

{% for method in node.functions|sort_asc %} {{ block('method') }} {% endfor %} {% endif %}
{% endblock %}