@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace AppBundle\Controller; |
4 | 4 | |
5 | 5 | use AppBundle\Entity\User; |
6 | -use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; |
|
7 | 6 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; |
8 | 7 | use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; |
9 | 8 | use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
@@ -39,7 +39,7 @@ |
||
39 | 39 | public function userActivateAction(Request $request, User $user) |
40 | 40 | { |
41 | 41 | $em = $this->getDoctrine()->getManager(); |
42 | - if($user->isEnabled()){ |
|
42 | + if ($user->isEnabled()) { |
|
43 | 43 | $user->setStatus(false); |
44 | 44 | } else { |
45 | 45 | $user->setStatus(true); |
@@ -72,7 +72,7 @@ |
||
72 | 72 | { |
73 | 73 | $resolver->setDefaults(array( |
74 | 74 | 'data_class' => 'AppBundle\Entity\User', |
75 | - 'validation_groups' => array('registration','edit'), |
|
75 | + 'validation_groups' => array('registration', 'edit'), |
|
76 | 76 | )); |
77 | 77 | } |
78 | 78 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $postsQuery = $em->createQueryBuilder() |
29 | 29 | ->select('u') |
30 | 30 | ->from('AppBundle:User', 'u'); |
31 | - if ($params->has('date') && $params->get('date')== 'asc'){ |
|
31 | + if ($params->has('date') && $params->get('date') == 'asc') { |
|
32 | 32 | $postsQuery->orderBy('u.createdAt', 'ASC'); |
33 | 33 | } else { |
34 | 34 | $postsQuery->orderBy('u.createdAt', 'DESC'); |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | ->orWhere( |
42 | 42 | $postsQuery->expr()->like('u.lastName', ':name') |
43 | 43 | ) |
44 | - ->setParameter('name', '%' . $params->get('name') . '%'); |
|
44 | + ->setParameter('name', '%'.$params->get('name').'%'); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | return $postsQuery->getQuery()->getResult(); |