Skip to content

Commit ee3ab82

Browse files
committed
🆙 Improve name of templates
1 parent 3fe729e commit ee3ab82

13 files changed

+12
-12
lines changed

data/templates/vuepress/index-classes.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pageClass: phpdoc-api-generated-page
88

99
{% for namespace in project.indexes.namespaces|sort_asc %}
1010
{%- for class in namespace.classes|sort_asc %}
11-
{%- include 'class.md.twig' %}
11+
{%- include 'struct-class.md.twig' %}
1212
{%- endfor %}
1313
{% endfor %}
1414

data/templates/vuepress/index-interfaces.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pageClass: phpdoc-api-generated-page
88

99
{% for namespace in project.indexes.namespaces|sort_asc %}
1010
{%- for interface in namespace.interfaces|sort_asc %}
11-
{%- include 'interface.md.twig' %}
11+
{%- include 'struct-interface.md.twig' %}
1212
{%- endfor %}
1313
{%- endfor %}
1414

data/templates/vuepress/index-traits.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pageClass: phpdoc-api-generated-page
1212

1313
{% for namespace in project.indexes.namespaces|sort_asc %}
1414
{%- for trait in namespace.traits|sort_asc %}
15-
{%- include 'trait.md.twig' %}
15+
{%- include 'struct-trait.md.twig' %}
1616
{%- endfor %}
1717
{% endfor %}
1818

data/templates/vuepress/property.md.twig renamed to data/templates/vuepress/member-property.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{{- 'danger ' -}}
99
{% endif -%}
1010

11-
{{ include('property-anchor-ref.md.twig') }}
11+
{{ include('anchor-ref-property.md.twig') }}
1212
{{- '$' ~ property.name }} {{ include('badges.md.twig', { elem: property }) }}
1313
-----
1414

data/templates/vuepress/method-header.md.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
{{- 'danger ' -}}
99
{% endif -%}
1010

11-
{{ include('method-anchor-ref.md.twig') }}
11+
{{ include('anchor-ref-method.md.twig') }}
1212
{{- method.name }} ( ) {{ include('badges.md.twig', { elem: method }) }}
1313
-----

0 commit comments

Comments
 (0)