@@ -20,14 +20,14 @@ |
||
| 20 | 20 | { |
| 21 | 21 | public function sortAdminModsByOrder(array $adminLinks = []): array |
| 22 | 22 | { |
| 23 | - usort($adminLinks, function (array $a, array $b) { |
|
| 24 | - if ((int)$a['order'] === (int)$b['order']) { |
|
| 23 | + usort($adminLinks, function(array $a, array $b) { |
|
| 24 | + if ((int) $a['order'] === (int) $b['order']) { |
|
| 25 | 25 | return strcmp($a['moduleName'], $b['moduleName']); |
| 26 | 26 | } |
| 27 | - if ((int)$a['order'] > (int)$b['order']) { |
|
| 27 | + if ((int) $a['order'] > (int) $b['order']) { |
|
| 28 | 28 | return 1; |
| 29 | 29 | } |
| 30 | - if ((int)$a['order'] < (int)$b['order']) { |
|
| 30 | + if ((int) $a['order'] < (int) $b['order']) { |
|
| 31 | 31 | return -1; |
| 32 | 32 | } |
| 33 | 33 | |
@@ -86,10 +86,10 @@ |
||
| 86 | 86 | ]); |
| 87 | 87 | |
| 88 | 88 | // number of items to show |
| 89 | - $pageSize = (int)$this->getVar('pagesize', 25); |
|
| 89 | + $pageSize = (int) $this->getVar('pagesize', 25); |
|
| 90 | 90 | |
| 91 | 91 | // offset |
| 92 | - $startOffset = (int)$request->query->getInt('startnum', 0); |
|
| 92 | + $startOffset = (int) $request->query->getInt('startnum', 0); |
|
| 93 | 93 | |
| 94 | 94 | // get data |
| 95 | 95 | $items = $repository->getIntrusions($where, $sorting, $pageSize, $startOffset); |
@@ -139,7 +139,7 @@ |
||
| 139 | 139 | $variableApi->set(VariableApi::CONFIG, 'sessionsavepath', $sessionSavePath); |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | - if ((bool)$sessionStoreToFile !== (bool)$variableApi->getSystemVar('sessionstoretofile')) { |
|
| 142 | + if ((bool) $sessionStoreToFile !== (bool) $variableApi->getSystemVar('sessionstoretofile')) { |
|
| 143 | 143 | // logout if going from one storage to another one |
| 144 | 144 | $causeLogout = true; |
| 145 | 145 | } |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | // fetch different username and password fields depending on the transport type |
| 72 | 72 | $credentialsSuffix = 'gmail' === $formData['transport'] ? 'Gmail' : ''; |
| 73 | 73 | |
| 74 | - $transport = (string)$formData['transport']; |
|
| 74 | + $transport = (string) $formData['transport']; |
|
| 75 | 75 | $disableDelivery = false; |
| 76 | 76 | if ('test' === $transport) { |
| 77 | 77 | $transport = null; |
@@ -106,7 +106,7 @@ |
||
| 106 | 106 | } |
| 107 | 107 | // remove disabled |
| 108 | 108 | foreach ($searchModules as $displayName => $moduleName) { |
| 109 | - if ((bool)$this->getVar('disable_' . $moduleName)) { |
|
| 109 | + if ((bool) $this->getVar('disable_' . $moduleName)) { |
|
| 110 | 110 | unset($searchModules[$displayName]); |
| 111 | 111 | } |
| 112 | 112 | } |
@@ -441,7 +441,7 @@ |
||
| 441 | 441 | $form->handleRequest($request); |
| 442 | 442 | if ($form->isSubmitted() && $form->isValid()) { |
| 443 | 443 | if ($form->get('toggle')->isClicked()) { |
| 444 | - if ($user->getAttributes()->containsKey(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY) && (bool)$user->getAttributes()->get(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY)) { |
|
| 444 | + if ($user->getAttributes()->containsKey(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY) && (bool) $user->getAttributes()->get(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY)) { |
|
| 445 | 445 | $user->getAttributes()->remove(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY); |
| 446 | 446 | $this->addFlash('success', $this->trans('Done! A password change will no longer be required for %userName%.', ['%userName%' => $user->getUname()])); |
| 447 | 447 | } else { |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | ->setParameter('excludedUid', $authenticationMappingEntity->getUid()); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - if ((int)$qb->getQuery()->getSingleScalarResult() > 0) { |
|
| 75 | + if ((int) $qb->getQuery()->getSingleScalarResult() > 0) { |
|
| 76 | 76 | $this->context->buildViolation($this->translator->trans('The user name you entered (%userName%) has already been registered.', ['%userName%' => $userName], 'validators')) |
| 77 | 77 | ->atPath('uname') |
| 78 | 78 | ->addViolation(); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | $qb->andWhere('m.uid != :excludedUid') |
| 92 | 92 | ->setParameter('excludedUid', $authenticationMappingEntity->getUid()); |
| 93 | 93 | } |
| 94 | - $uCount = (int)$qb->getQuery()->getSingleScalarResult(); |
|
| 94 | + $uCount = (int) $qb->getQuery()->getSingleScalarResult(); |
|
| 95 | 95 | |
| 96 | 96 | $query = $this->userVerificationRepository->createQueryBuilder('v') |
| 97 | 97 | ->select('count(v.uid)') |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | ->setParameter('email', $emailAddress) |
| 101 | 101 | ->setParameter('chgtype', ZAuthConstant::VERIFYCHGTYPE_EMAIL) |
| 102 | 102 | ->getQuery(); |
| 103 | - $vCount = (int)$query->getSingleScalarResult(); |
|
| 103 | + $vCount = (int) $query->getSingleScalarResult(); |
|
| 104 | 104 | |
| 105 | 105 | if ($uCount + $vCount > 0) { |
| 106 | 106 | $this->context->buildViolation($this->translator->trans('The email address you entered (%email%) has already been registered.', ['%email%' => $emailAddress], 'validators')) |
@@ -104,7 +104,7 @@ |
||
| 104 | 104 | if ($hasEditPermissionToUser) { |
| 105 | 105 | $userEntity = $this->userRepository->find($mapping->getUid()); |
| 106 | 106 | if (null !== $userEntity) { |
| 107 | - if ((bool)$userEntity->getAttributeValue(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY) |
|
| 107 | + if ((bool) $userEntity->getAttributeValue(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY) |
|
| 108 | 108 | && $userEntity->getAttributes()->containsKey(ZAuthConstant::REQUIRE_PASSWORD_CHANGE_KEY) |
| 109 | 109 | ) { |
| 110 | 110 | $title = $this->translator->trans('Cancel required change of password for %sub%', ['%sub%' => $mapping->getUname()]); |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | // validate password |
| 163 | - $pass = (string)trim($importValues[$counter - 1]['pass']); |
|
| 163 | + $pass = (string) trim($importValues[$counter - 1]['pass']); |
|
| 164 | 164 | $errors = $this->validator->validate($pass, [new NotNull(), new ValidPassword()]); |
| 165 | 165 | if ($errors->count() > 0) { |
| 166 | 166 | return $this->locateErrors($errors, 'password', $counter); |
@@ -174,14 +174,14 @@ discard block |
||
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | // validate activation value |
| 177 | - $importValues[$counter - 1]['activated'] = isset($importValues[$counter - 1]['activated']) ? (int)$importValues[$counter - 1]['activated'] : UsersConstant::ACTIVATED_ACTIVE; |
|
| 177 | + $importValues[$counter - 1]['activated'] = isset($importValues[$counter - 1]['activated']) ? (int) $importValues[$counter - 1]['activated'] : UsersConstant::ACTIVATED_ACTIVE; |
|
| 178 | 178 | $activated = $importValues[$counter - 1]['activated']; |
| 179 | 179 | if ((UsersConstant::ACTIVATED_INACTIVE !== $activated) && (UsersConstant::ACTIVATED_ACTIVE !== $activated)) { |
| 180 | 180 | return $this->locateErrors($this->trans('Error! The CSV is not valid: the "activated" column must contain 0 or 1 only.'), 'activated', $counter); |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | // validate sendmail |
| 184 | - $importValues[$counter - 1]['sendmail'] = isset($importValues[$counter - 1]['sendmail']) ? (int)$importValues[$counter - 1]['sendmail'] : 0; |
|
| 184 | + $importValues[$counter - 1]['sendmail'] = isset($importValues[$counter - 1]['sendmail']) ? (int) $importValues[$counter - 1]['sendmail'] : 0; |
|
| 185 | 185 | if ($importValues[$counter - 1]['sendmail'] < 0 || $importValues[$counter - 1]['sendmail'] > 1) { |
| 186 | 186 | return $this->locateErrors($this->trans('Error! The CSV is not valid: the "sendmail" column must contain 0 or 1 only.'), 'sendmail', $counter); |
| 187 | 187 | } |