@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | { |
| 25 | 25 | $query = $this->getDoctrine()->getRepository('LoginCidadaoCoreBundle:Country') |
| 26 | 26 | ->createQueryBuilder('cty') |
| 27 | - ->where('cty.reviewed = ' . Country::REVIEWED_OK) |
|
| 27 | + ->where('cty.reviewed = '.Country::REVIEWED_OK) |
|
| 28 | 28 | ->orderBy('cty.id', 'ASC'); |
| 29 | 29 | return $this->handleView($this->view($query->getQuery()->getResult(Query::HYDRATE_ARRAY))); |
| 30 | 30 | } |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | { |
| 39 | 39 | $query = $this->getDoctrine()->getRepository('LoginCidadaoCoreBundle:State') |
| 40 | 40 | ->createQueryBuilder('state') |
| 41 | - ->where('state.reviewed = ' . Country::REVIEWED_OK); |
|
| 41 | + ->where('state.reviewed = '.Country::REVIEWED_OK); |
|
| 42 | 42 | $country = $request->get('country_id'); |
| 43 | 43 | if ($country) { |
| 44 | 44 | $query->join('LoginCidadaoCoreBundle:Country', 'cty', 'WITH', 'state.country = cty'); |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | { |
| 59 | 59 | $query = $this->getDoctrine()->getRepository('LoginCidadaoCoreBundle:City') |
| 60 | 60 | ->createQueryBuilder('c') |
| 61 | - ->where('c.reviewed = ' . Country::REVIEWED_OK); |
|
| 61 | + ->where('c.reviewed = '.Country::REVIEWED_OK); |
|
| 62 | 62 | $country = $request->get('country_id'); |
| 63 | 63 | $state = $request->get('state_id'); |
| 64 | 64 | if ($country || $state) { |
@@ -33,11 +33,11 @@ |
||
| 33 | 33 | $person = $this->getUser(); |
| 34 | 34 | $serializer = $this->get('jms_serializer'); |
| 35 | 35 | return $serializer->serialize($person, 'json', |
| 36 | - SerializationContext::create()->setGroups($scope)); |
|
| 36 | + SerializationContext::create()->setGroups($scope)); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | protected function getClientScope(PersonInterface $user, |
| 40 | - ClientInterface $client = null) |
|
| 40 | + ClientInterface $client = null) |
|
| 41 | 41 | { |
| 42 | 42 | if ($client === null) { |
| 43 | 43 | $client = $this->getClient(); |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * @return array |
| 53 | 53 | */ |
| 54 | 54 | public function getNotificationsAction(Request $request, |
| 55 | - ParamFetcherInterface $paramFetcher) |
|
| 55 | + ParamFetcherInterface $paramFetcher) |
|
| 56 | 56 | { |
| 57 | 57 | $offset = $paramFetcher->get('offset'); |
| 58 | 58 | $offset = null == $offset ? 0 : $offset; |
@@ -64,13 +64,13 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | if (array_search('get_all_notifications', $scopes) === false) { |
| 66 | 66 | $notifications = $this->getNotificationHandler()->getAllFromPersonByClient($person, |
| 67 | - $client, |
|
| 68 | - $limit, |
|
| 69 | - $offset); |
|
| 67 | + $client, |
|
| 68 | + $limit, |
|
| 69 | + $offset); |
|
| 70 | 70 | } else { |
| 71 | 71 | $notifications = $this->getNotificationHandler()->getAllFromPerson($person, |
| 72 | - $limit, |
|
| 73 | - $offset); |
|
| 72 | + $limit, |
|
| 73 | + $offset); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | return $this->renderWithContext($notifications); |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | $user = $token->getUser(); |
| 193 | 193 | if ($user instanceof ClientUser) { |
| 194 | 194 | return $this->validateNotificationAsClient($user->getClient(), |
| 195 | - $request); |
|
| 195 | + $request); |
|
| 196 | 196 | } elseif ($user instanceof PersonInterface) { |
| 197 | 197 | return $this->validateNotificationAsPerson($user, $request); |
| 198 | 198 | } else { |
@@ -173,10 +173,10 @@ |
||
| 173 | 173 | ->createQueryBuilder('a') |
| 174 | 174 | ->select('cnc, p') |
| 175 | 175 | ->join('LoginCidadaoCoreBundle:Person', 'p', 'WITH', |
| 176 | - 'a.person = p') |
|
| 176 | + 'a.person = p') |
|
| 177 | 177 | ->join('LoginCidadaoOAuthBundle:Client', 'c', 'WITH', 'a.client = c') |
| 178 | 178 | ->join('LoginCidadaoCoreBundle:ConfigNotCli', 'cnc', 'WITH', |
| 179 | - 'cnc.client = c') |
|
| 179 | + 'cnc.client = c') |
|
| 180 | 180 | ->where('c.id = '.$client->getId().' and p.id = :person_id and cnc.id = :config_id') |
| 181 | 181 | ->getQuery(); |
| 182 | 182 | $rowR = array(); |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | $body = json_decode($request->getContent(), 1); |
| 169 | 169 | |
| 170 | - $chkAuth = $this->getDoctrine() |
|
| 170 | + $chkAuth = $this->getDoctrine() |
|
| 171 | 171 | ->getManager() |
| 172 | 172 | ->getRepository('LoginCidadaoCoreBundle:Authorization') |
| 173 | 173 | ->createQueryBuilder('a') |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | $rowR[$idx] = array('person_id' => $row['person_id'], 'error' => 'missing authorization or configuration'); |
| 192 | 192 | continue; |
| 193 | 193 | } |
| 194 | - $not = new Notification(); |
|
| 194 | + $not = new Notification(); |
|
| 195 | 195 | $not->setPerson($res[0]); |
| 196 | 196 | $not->setConfigNotCli($res[1]) |
| 197 | 197 | ->setIcon(isset($row['icon']) && $row['icon'] ? $row['icon'] |
@@ -242,7 +242,7 @@ discard block |
||
| 242 | 242 | ->findOneBy(array( |
| 243 | 243 | 'token' => $token->getToken() |
| 244 | 244 | )); |
| 245 | - $client = $accessToken->getClient(); |
|
| 245 | + $client = $accessToken->getClient(); |
|
| 246 | 246 | |
| 247 | 247 | $people = $this->getDoctrine()->getRepository('LoginCidadaoCoreBundle:Person'); |
| 248 | 248 | $person = $people->find($id); |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | * @return \Doctrine\ORM\QueryBuilder |
| 82 | 82 | */ |
| 83 | 83 | private function getImpersonatonsWithoutReportsQuery($limit = null, |
| 84 | - PersonInterface $impersonator |
|
| 84 | + PersonInterface $impersonator |
|
| 85 | 85 | = null) |
| 86 | 86 | { |
| 87 | 87 | $query = $this->createQueryBuilder('l') |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | foreach ($this->reader->getMethodAnnotations($method) as $annotation) { |
| 37 | 37 | if ($annotation instanceof Loggable) { |
| 38 | 38 | $this->logger->logActivity($event->getRequest(), $annotation, |
| 39 | - $controller); |
|
| 39 | + $controller); |
|
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * @return ActionLog |
| 91 | 91 | */ |
| 92 | 92 | private function initLog(Request $request, $actionType, $controllerAction, |
| 93 | - $auditUsername) |
|
| 93 | + $auditUsername) |
|
| 94 | 94 | { |
| 95 | 95 | $controller = get_class($controllerAction[0]); |
| 96 | 96 | $action = $controllerAction[1]; |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | public function registerLogin(Request $request, PersonInterface $person, |
| 127 | - array $controllerAction) |
|
| 127 | + array $controllerAction) |
|
| 128 | 128 | { |
| 129 | 129 | $auditUsername = $this->auditConfig->getCurrentUsername(); |
| 130 | 130 | $actionType = ActionLog::TYPE_LOGIN; |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | private function loopInsert($dir, $fileName, $query, $prepareFunction, $debug = false) |
| 98 | 98 | { |
| 99 | 99 | $entries = 0; |
| 100 | - $file = $dir . DIRECTORY_SEPARATOR . $fileName; |
|
| 100 | + $file = $dir.DIRECTORY_SEPARATOR.$fileName; |
|
| 101 | 101 | if (($handle = fopen($file, 'r')) !== false) { |
| 102 | 102 | while (($row = fgetcsv($handle)) !== false) { |
| 103 | 103 | $data = $prepareFunction($row); |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | if (!($this->getDefaultOAuthClient() instanceof Client)) { |
| 118 | 118 | $uid = $this->getContainer()->getParameter('oauth_default_client.uid'); |
| 119 | 119 | $pictureName = 'client_logo.png'; |
| 120 | - $picture = new File($dir . DIRECTORY_SEPARATOR . $pictureName); |
|
| 120 | + $picture = new File($dir.DIRECTORY_SEPARATOR.$pictureName); |
|
| 121 | 121 | $domain = $this->getContainer()->getParameter('site_domain'); |
| 122 | 122 | $url = "//$domain"; |
| 123 | 123 | $grantTypes = array( |
@@ -23,12 +23,12 @@ discard block |
||
| 23 | 23 | $result = array(); |
| 24 | 24 | if (is_numeric($id)) { |
| 25 | 25 | $result = $this->getDoctrine() |
| 26 | - ->getManager () |
|
| 26 | + ->getManager() |
|
| 27 | 27 | ->getRepository('LoginCidadaoCoreBundle:State') |
| 28 | 28 | ->createQueryBuilder('u') |
| 29 | 29 | ->select('u.id, u.name') |
| 30 | 30 | ->where('u.country = :country') |
| 31 | - ->andWhere('u.reviewed = ' . State::REVIEWED_OK) |
|
| 31 | + ->andWhere('u.reviewed = '.State::REVIEWED_OK) |
|
| 32 | 32 | ->setParameters(array('country' => new Country($id))) |
| 33 | 33 | ->orderBy('u.name', 'ASC') |
| 34 | 34 | ->getQuery() |
@@ -46,12 +46,12 @@ discard block |
||
| 46 | 46 | $result = array(); |
| 47 | 47 | if (is_numeric($id)) { |
| 48 | 48 | $result = $this->getDoctrine() |
| 49 | - ->getManager () |
|
| 49 | + ->getManager() |
|
| 50 | 50 | ->getRepository('LoginCidadaoCoreBundle:City') |
| 51 | 51 | ->createQueryBuilder('u') |
| 52 | 52 | ->select('u.id, u.name') |
| 53 | 53 | ->where('u.state = :state') |
| 54 | - ->andWhere('u.reviewed = ' . City::REVIEWED_OK) |
|
| 54 | + ->andWhere('u.reviewed = '.City::REVIEWED_OK) |
|
| 55 | 55 | ->setParameters(array('state' => new State($id))) |
| 56 | 56 | ->orderBy('u.name', 'ASC') |
| 57 | 57 | ->getQuery() |