@@ -156,7 +156,7 @@ |
||
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)) { |
@@ -131,7 +131,7 @@ discard block |
||
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 |
||
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 | ]; |
@@ -31,6 +31,6 @@ |
||
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 | } |