Completed
Push — revert-1243-SWP-2230 ( 4e935b )
by
unknown
50s
created
src/SWP/Bundle/UserBundle/Controller/RegistrationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Migrations/2021/01/Version20210112135542.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
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
                 }
Please login to merge, or discard this patch.
src/SWP/Bundle/CoreBundle/Command/FillArticleExtraTableCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
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
                 }
Please login to merge, or discard this patch.