{% extends 'layout.html.twig' %} {% block javascripts %} {% endblock %} {% block content %}
{% if project.settings.shouldIncludeSource %} {% endif %}

{{ node.namespace }}{{ node.name }}

{{ node.summary }}

{{ node.description|markdown|raw }}

Summary

Methods
Constants
{% 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 %}
N/A
{% for method in node.inheritedMethods.merge(node.methods) if method.visibility == 'private' %} {{ method.name }}()
{% else %} No private methods found {% endfor %}
N/A
{% if node.constants|length > 0 %}

Constants

{% for constant in node.inheritedConstants.merge(node.constants) %} {{ block('constant') }} {% endfor %} {% endif %} {% if node.inheritedMethods.merge(node.methods)|length > 0 %}

Methods

{% for method in node.inheritedMethods.merge(node.methods) if method.visibility == 'public' %} {{ block('method') }} {% endfor %} {% for method in node.inheritedMethods.merge(node.methods) if method.visibility == 'protected' %} {{ block('method') }} {% endfor %} {% for method in node.inheritedMethods.merge(node.methods) if method.visibility == 'private' %} {{ block('method') }} {% endfor %} {% endif %}
{% endblock %}