Completed
Push — sf2.7 ( 8e4ec4...712e60 )
by Laurent
03:04
created
src/AppBundle/Controller/GroupController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      * @Method("GET")
132 132
      * @Template()
133 133
      */
134
-    public function editAction(Group $group=null)
134
+    public function editAction(Group $group = null)
135 135
     {
136 136
         $editForm = $this->createForm(new GroupType(), $group, array(
137 137
             'action' => $this->generateUrl('admin_groups_update', array('id' => $group->getId())),
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      * @Method("PUT")
162 162
      * @Template("AppBundle:Group:edit.html.twig")
163 163
      */
164
-    public function updateAction(Request $request, Group $group=null)
164
+    public function updateAction(Request $request, Group $group = null)
165 165
     {
166 166
         $editForm = $this->createForm(new GroupType(), $group, array(
167 167
             'action' => $this->generateUrl('admin_groups_update', array('id' => $group->getId())),
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
      * @Route("/{id}/delete", name="admin_groups_delete", requirements={"id"="\d+"})
196 196
      * @Method("DELETE")
197 197
      */
198
-    public function deleteAction(Request $request, Group $group=null)
198
+    public function deleteAction(Request $request, Group $group = null)
199 199
     {
200 200
         $form = $this->createDeleteForm($group->getId(), 'admin_groups_delete');
201 201
         
Please login to merge, or discard this patch.