Skip to content

Commit 1446418

Browse files
committed
Renames to lowercase
1 parent 2ed26ff commit 1446418

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/Puphpet/MainBundle/Controller/PostgreSqlController.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ public function indexAction(array $data)
1616

1717
public function addUserAction()
1818
{
19-
return $this->render('PuphpetMainBundle:postgresql/sections:User.html.twig', [
19+
return $this->render('PuphpetMainBundle:postgresql/sections:user.html.twig', [
2020
'user' => $this->getData()['empty_user'],
2121
]);
2222
}
2323

2424
public function addDatabaseAction()
2525
{
26-
return $this->render('PuphpetMainBundle:postgresql/sections:Database.html.twig', [
26+
return $this->render('PuphpetMainBundle:postgresql/sections:database.html.twig', [
2727
'database' => $this->getData()['empty_database'],
2828
]);
2929
}
3030

3131
public function addGrantAction()
3232
{
33-
return $this->render('PuphpetMainBundle:postgresql/sections:Grant.html.twig', [
33+
return $this->render('PuphpetMainBundle:postgresql/sections:grant.html.twig', [
3434
'grant' => $this->getData()['empty_grant'],
3535
'available_privileges' => $this->getData()['available_privileges'],
3636
]);

src/Puphpet/MainBundle/Resources/views/postgresql/form.html.twig

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,21 +114,21 @@
114114
<div class="clearfix"></div>
115115

116116
{% for user in postgresql.users %}
117-
{% include 'PuphpetMainBundle:postgresql/sections:User.html.twig' with {'user': user} %}
117+
{% include 'PuphpetMainBundle:postgresql/sections:user.html.twig' with {'user': user} %}
118118
{% endfor %}
119119

120120
<a href="#" data-source-url="{{ path('puphpet.postgresql.add_user') }}"
121121
class="add-block"><i class="fa fa-level-up fa-rotate-90"></i> Add another user</a>
122122

123123
{% for database in postgresql.databases %}
124-
{% include 'PuphpetMainBundle:postgresql/sections:Database.html.twig' with {'database': database} %}
124+
{% include 'PuphpetMainBundle:postgresql/sections:database.html.twig' with {'database': database} %}
125125
{% endfor %}
126126

127127
<a href="#" data-source-url="{{ path('puphpet.postgresql.add_database') }}"
128128
class="add-block"><i class="fa fa-level-up fa-rotate-90"></i> Add another database</a>
129129

130130
{% for grant in postgresql.grants %}
131-
{% include 'PuphpetMainBundle:postgresql/sections:Grant.html.twig' with {'grant': grant} %}
131+
{% include 'PuphpetMainBundle:postgresql/sections:grant.html.twig' with {'grant': grant} %}
132132
{% endfor %}
133133

134134
<a href="#" data-source-url="{{ path('puphpet.postgresql.add_grant') }}"

0 commit comments

Comments
 (0)