Skip to content

Commit 2f2d8ac

Browse files
committed
Renaming to lowercase
1 parent b1ec2d3 commit 2f2d8ac

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/Puphpet/MainBundle/Controller/MySqlController.php

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

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

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

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -112,21 +112,21 @@
112112
<div class="clearfix"></div>
113113

114114
{% for user in mysql.users %}
115-
{% include 'PuphpetMainBundle:mysql/sections:User.html.twig' with {'user': user} %}
115+
{% include 'PuphpetMainBundle:mysql/sections:user.html.twig' with {'user': user} %}
116116
{% endfor %}
117117

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

121121
{% for database in mysql.databases %}
122-
{% include 'PuphpetMainBundle:mysql/sections:Database.html.twig' with {'database': database} %}
122+
{% include 'PuphpetMainBundle:mysql/sections:database.html.twig' with {'database': database} %}
123123
{% endfor %}
124124

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

128128
{% for grant in mysql.grants %}
129-
{% include 'PuphpetMainBundle:mysql/sections:Grant.html.twig' with {
129+
{% include 'PuphpetMainBundle:mysql/sections:grant.html.twig' with {
130130
'available_privileges': mysql.available_privileges, 'grant': grant} %}
131131
{% endfor %}
132132

0 commit comments

Comments
 (0)