Completed
Push — sf2.7 ( 8e4ec4...712e60 )
by Laurent
03:04
created
src/AppBundle/Controller/AbstractController.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * UserController controller des utilisateurs.
4
- *
5
- * PHP Version 5
6
- *
7
- * @author    Quétier Laurent <[email protected]>
8
- * @copyright 2014 Dev-Int GLSR
9
- * @license   http://opensource.org/licenses/gpl-license.php GNU Public License
10
- *
11
- * @version   since 1.0.0
12
- *
13
- * @link      https://github.com/Dev-Int/glsr
14
- */
3
+     * UserController controller des utilisateurs.
4
+     *
5
+     * PHP Version 5
6
+     *
7
+     * @author    Quétier Laurent <[email protected]>
8
+     * @copyright 2014 Dev-Int GLSR
9
+     * @license   http://opensource.org/licenses/gpl-license.php GNU Public License
10
+     *
11
+     * @version   since 1.0.0
12
+     *
13
+     * @link      https://github.com/Dev-Int/glsr
14
+     */
15 15
 namespace AppBundle\Controller;
16 16
 
17 17
 use Symfony\Component\HttpFoundation\Request;
Please login to merge, or discard this patch.
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.