static {{method.response.types|route|join('|')|raw}} {%if method.ifunction.call.returnsref%}&{%endif%}{{method.name}}(
{%if method.arguments|length > 0%}
{%for param in method.arguments%}
{%if param.hasdefault%}[ {%endif%} {{param.types|route|join('|')|raw}}
{{param.name}} {%if param.default%} = {{param.default}} ]{%endif%}
{%if not loop.last%}, {%endif%}
{%endfor%}
{%endif%})
|
|
{%include 'docblock.twig' with {'sdesc': method.sdesc, 'desc': method.summary} %}
{%if method.arguments|length > 0 %}
Parámetros:
{%for param in method.arguments%}
{{param.types|route|join('|')|raw}} |
{{param.name}}: |
{%if param.sdesc%} {{param.description}}{%endif%}
|
{%endfor%}
{%endif%}
{%include 'tags.twig' with {'api_tags': method.tags, 'info_tags': method.tags} %}
{%if method.overrides|length > 0%}
Redefinición de:
- {{method.overrides.link}}
{%if method.overrides.sdesc%}
- {{method.overrides.sdesc}}
{%endif%}
{%endif%}
{%if method.implements|length > 0 %}
Implementation of:
{%for imp in method.implements%}
- {{imp.link}}
{%if imp.sdesc%}
- {{imp.sdesc}}
{%endif%}
{%endfor%}
{%endif%}
{%if method.descmethod|length > 0%}
Redefinido en subclases como:
{%for dm in method.descmethod%}
-
{{dm.link}}
{%if dm.sdesc%}
: {{dm.sdesc}}
{%endif%}
{%endfor%}
{%endif%}
{%endif%}
{%endfor%}
{%for method in methods|sort_asc%}
{%if not method.static%}
{{method.response.types|route|join('|')|raw}} {%if method.response.reference%}&{%endif%}{{method.name}}(
{%if method.arguments|length > 0%}
{%for params in method.arguments%}
{%if params.default%}[{%endif%}{{params.types|route|join('|')|raw}}
{{params.name}}{%if params.default%} = {{params.default}} ]{%endif%}
{%if not loop.last%}, {%endif%}
{%endfor%}
{%endif%})
|
|
{%include 'docblock.twig' with {'sdesc': method.sdesc, 'desc': method.summary}%}
{%if method.arguments|length > 0 %}
Parámetros:
{%for params in method.arguments%}
{{params.types|route|join('|')|raw}} |
{{params.name}}: |
{%if params.description%} {{params.summary}}{%endif%}
|
{%endfor%}
{%endif%}
{%include 'tags.twig' with { 'api_tags': method.tags, 'info_tags': method.tags} %}
{%if method.overrides%}
Redefinición de:
- {{method.overrides.link}}
{%if method.overrides.sdesc%}
- {{method.overrides.sdesc}}
{%endif%}
{%endif%}
{%if method.implements%}
Implementation of:
{%for imp in method.implements%}
- {{imp.link}}
{%if imp.sdesc%}
- {{imp.sdesc}}
{%endif%}
{%endfor%}
{%endif%}
{%if methods.children|length > 0%}
Redefinido en subclases como:
{%for dm in method.children%}
-
{{dm.link}}
{%if dm.sdesc%}
: {{dm.sdesc}}
{%endif%}
{%endfor%}
{%endif%}
{%endif%}
{%endfor%}