Passed
Pull Request — main (#416)
by Peter
18:00
created
Surfnet/StepupMiddleware/MiddlewareBundle/Service/EventStreamReplayer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 
157 157
             $output->writeln(['', '<info>Done</info>', '']);
158 158
         } catch (Throwable $e) {
159
-            echo $e->getMessage()."\n";
159
+            echo $e->getMessage() . "\n";
160 160
 
161 161
             $this->connectionHelper->rollBack();
162 162
             if (isset($replayProgress)) {
Please login to merge, or discard this patch.
MiddlewareBundle/Service/VerifiedSecondFactorReminderMailService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             'templateString' => $emailTemplate->htmlContent,
132 132
             'locale' => $locale,
133 133
             'commonName' => $commonName,
134
-            'expirationDate' => (string)$requestedAt,
134
+            'expirationDate' => (string) $requestedAt,
135 135
             'registrationCode' => $registrationCode,
136 136
             'raLocations' => $raLocations,
137 137
         ];
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
             'templateString' => $emailTemplate->htmlContent,
175 175
             'locale' => $locale,
176 176
             'commonName' => $commonName,
177
-            'expirationDate' => (string)$requestedAt,
177
+            'expirationDate' => (string) $requestedAt,
178 178
             'registrationCode' => $registrationCode,
179 179
             'ras' => $ras,
180 180
         ];
Please login to merge, or discard this patch.
MiddlewareBundle/Service/SecondFactorDisplayNameResolverService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
      */
32 32
     public function resolveByType(SecondFactorType $secondFactorType): string
33 33
     {
34
-        return $this->secondFactors[(string)$secondFactorType] ?? ucfirst((string)$secondFactorType);
34
+        return $this->secondFactors[(string) $secondFactorType] ?? ucfirst((string) $secondFactorType);
35 35
     }
36 36
 }
Please login to merge, or discard this patch.