{% if project.settings.shouldIncludeSource %}
{% endif %}
{{ node.namespace }}{{ node.name }}
{{ node.summary }}
{{ node.description|markdown|raw }}
Summary
{% for method in node.inheritedMethods.merge(node.methods) if method.visibility == 'public' %}
{{ method.name }}()
{% else %}
No public methods found
{% endfor %}
{% for constant in node.inheritedConstants.merge(node.constants) %}
{{ constant.name }}
{% else %}
No constants found
{% endfor %}
{% for method in node.inheritedMethods.merge(node.methods) if method.visibility == 'protected' %}
{{ method.name }}()
{% else %}
No protected methods found
{% endfor %}
{% for method in node.inheritedMethods.merge(node.methods) if method.visibility == 'private' %}
{{ method.name }}()
{% else %}
No private methods found
{% endfor %}