1{% extends "layout/base.twig" %} 2 3{% from "macros.twig" import class_item, replace_backslash, back_to_forward, sanitize %} 4 5{% block title %} 6[[{{ sanitize(replace_backslash("ElasticsearchPHP_Endpoints")) }}]] 7== {{ "Reference - Endpoints" }} 8{% endblock %} 9 10{% block content %} 11 12This is a complete list of namespaces and their associated endpoints. 13 14NOTE: This is auto-generated documentation 15 16{% for class in classes if not class.interface %} 17* <<{{ replace_backslash(class) }}, {{ class }}>> 18{% else %} 19* There are no endpoints available. 20{% endfor %} 21{% for class in classes if not class.interface %} 22include::{{ back_to_forward(class) }}.asciidoc[] 23{% else %} 24{% endfor %} 25{% endblock %} 26 27 28