@@ -121,7 +121,7 @@ |
||
| 121 | 121 | */ |
| 122 | 122 | public function verifyUserEmail(Request $request, GuardAuthenticatorHandler $guardHandler, |
| 123 | 123 | LoginAuthenticator $authenticator): Response { |
| 124 | - $id = (int)$request->get('id'); // retrieve the user id from the url |
|
| 124 | + $id = (int) $request->get('id'); // retrieve the user id from the url |
|
| 125 | 125 | |
| 126 | 126 | if ($request->isXmlHttpRequest()) { |
| 127 | 127 | return $this->verifyUserEmailFromPWA($id, $request); |
@@ -100,7 +100,7 @@ |
||
| 100 | 100 | if (is_array($extraItem)) { |
| 101 | 101 | $extra = ArticleExtraEmbedField::newFromValue($key, $extraItem); |
| 102 | 102 | } else { |
| 103 | - $extra = ArticleExtraTextField::newFromValue($key, (string)$extraItem); |
|
| 103 | + $extra = ArticleExtraTextField::newFromValue($key, (string) $extraItem); |
|
| 104 | 104 | } |
| 105 | 105 | $extra->setArticle($article); |
| 106 | 106 | } |
@@ -100,7 +100,7 @@ |
||
| 100 | 100 | if (is_array($extraItem)) { |
| 101 | 101 | $extra = ArticleExtraEmbedField::newFromValue($key, $extraItem); |
| 102 | 102 | } else { |
| 103 | - $extra = ArticleExtraTextField::newFromValue($key, (string)$extraItem); |
|
| 103 | + $extra = ArticleExtraTextField::newFromValue($key, (string) $extraItem); |
|
| 104 | 104 | } |
| 105 | 105 | $extra->setArticle($article); |
| 106 | 106 | } |