{{ method.description|markdown|raw }}
{% for tagList in method.tags if tagList.0.name not in ['param', 'return', 'api', 'throws', 'throw'] %}
{{ tagList.0.name }}
|
{% for tag in tagList %}
{% if (tag.name == "since" or "deprecated") %}
{{ tag.version }}
{% endif %}
{% if (tag.name == "see") %}
{{ tag.reference|route|raw }}
{% endif %}
{{ tag.description|markdown|raw }}
{% endfor %}
|
{% endfor %}
{% if method.tags.throws|length > 0 or method.tags.throw|length > 0 %}
Throws |
{% for exception in method.tags.throws %}
- {{ exception.types|route|join('|')|raw }}
- {{ exception.description|markdown|raw }}
{% endfor %}
{% for exception in method.tags.throw %}
- {{ exception.types|route|join('|')|raw }}
- {{ exception.description|markdown|raw }}
{% endfor %}
|
{% endif %}
{% if method.arguments|length > 0 %}
Arguments
{% for argument in method.arguments %}
{{ argument.name }}
{{ argument.types|route|join('|')|raw }}
{{ argument.description|markdown|raw }}
{% endfor %}
{% endif %}
{% if method.response.types and method.response.types|join() != 'void' %}
Response
{{ method.response.types|route|join('|')|raw }}
{{ method.response.description|markdown|raw }}
{% endif %}