@@ -5,9 +5,9 @@ |
||
5 | 5 | use Symfony\Component\ErrorHandler\Debug; |
6 | 6 | use Symfony\Component\HttpFoundation\Request; |
7 | 7 | |
8 | -require dirname(__DIR__).'/vendor/autoload.php'; |
|
8 | +require dirname(__DIR__) . '/vendor/autoload.php'; |
|
9 | 9 | |
10 | -(new Dotenv())->bootEnv(dirname(__DIR__).'/.env'); |
|
10 | +(new Dotenv())->bootEnv(dirname(__DIR__) . '/.env'); |
|
11 | 11 | |
12 | 12 | if ($_SERVER['APP_DEBUG']) { |
13 | 13 | umask(0000); |
@@ -216,10 +216,10 @@ |
||
216 | 216 | protected function configureOptions(OptionsResolver $resolver): void |
217 | 217 | { |
218 | 218 | $resolver->setRequired([ |
219 | - 'iban', //The IBAN of the sender |
|
220 | - 'bic', //The BIC of the sender |
|
221 | - 'name', //The name of the sender |
|
222 | - ]); |
|
219 | + 'iban', //The IBAN of the sender |
|
220 | + 'bic', //The BIC of the sender |
|
221 | + 'name', //The name of the sender |
|
222 | + ]); |
|
223 | 223 | |
224 | 224 | $resolver->setAllowedTypes('iban', ['string', 'null']); |
225 | 225 | $resolver->setAllowedTypes('bic', ['string', 'null']); |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | |
93 | 93 | // A single payment info where all PaymentOrders are added as transactions |
94 | 94 | $payment = new PaymentInformation( |
95 | - static::PAYMENT_PREFIX.' '.uniqid('', false), |
|
95 | + static::PAYMENT_PREFIX . ' ' . uniqid('', false), |
|
96 | 96 | $account_info['iban'], |
97 | 97 | $account_info['bic'], |
98 | 98 | $account_info['name'] |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | |
145 | 145 | // A single payment info where all PaymentOrders are added as transactions |
146 | 146 | $payment = new PaymentInformation( |
147 | - $paymentOrder->getIDString().' '.uniqid('', false), |
|
147 | + $paymentOrder->getIDString() . ' ' . uniqid('', false), |
|
148 | 148 | $iban, |
149 | 149 | $bic, |
150 | 150 | $account_name |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | protected function getGroupHeader(): GroupHeader |
172 | 172 | { |
173 | 173 | return new GroupHeader( |
174 | - static::ID_PREFIX.' '.uniqid('', false), |
|
174 | + static::ID_PREFIX . ' ' . uniqid('', false), |
|
175 | 175 | static::PARTY_NAME |
176 | 176 | ); |
177 | 177 | } |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | */ |
183 | 183 | protected function getPaymentInfoID(PaymentOrder $paymentOrder): string |
184 | 184 | { |
185 | - return $paymentOrder->getIDString().' '.uniqid('', false); |
|
185 | + return $paymentOrder->getIDString() . ' ' . uniqid('', false); |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | /** |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | $resolver->setDefault('mode', 'manual'); |
287 | 287 | $resolver->setAllowedValues('mode', ['auto', 'manual', 'auto_single']); |
288 | 288 | |
289 | - $resolver->setNormalizer('iban', function (Options $options, $value) { |
|
289 | + $resolver->setNormalizer('iban', function(Options $options, $value) { |
|
290 | 290 | if (null === $value) { |
291 | 291 | return null; |
292 | 292 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | use Symplify\EasyCodingStandard\ValueObject\Set\SetList; |
24 | 24 | use Symplify\CodingStandard\Fixer\LineLength\LineLengthFixer; |
25 | 25 | |
26 | -return static function (ContainerConfigurator $containerConfigurator): void { |
|
26 | +return static function(ContainerConfigurator $containerConfigurator): void { |
|
27 | 27 | $parameters = $containerConfigurator->parameters(); |
28 | 28 | $parameters->set(Option::SETS, [ |
29 | 29 | SetList::CLEAN_CODE, |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (file_exists(dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php')) { |
|
4 | - require dirname(__DIR__).'/var/cache/prod/App_KernelProdContainer.preload.php'; |
|
3 | +if (file_exists(dirname(__DIR__) . '/var/cache/prod/App_KernelProdContainer.preload.php')) { |
|
4 | + require dirname(__DIR__) . '/var/cache/prod/App_KernelProdContainer.preload.php'; |
|
5 | 5 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | { |
50 | 50 | $ipAddress = $this->request->getCurrentRequest() |
51 | 51 | ->getClientIp(); |
52 | - $this->logger->error('Authentication failed for IP: '.$ipAddress); |
|
52 | + $this->logger->error('Authentication failed for IP: ' . $ipAddress); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | public static function getSubscribedEvents(): array |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | //Download as file |
100 | 100 | if (1 === count($xml_files)) { |
101 | 101 | $xml_string = array_values($xml_files)[0]; |
102 | - $filename = 'export_'.date('Y-m-d_H-i-s').'.xml'; |
|
102 | + $filename = 'export_' . date('Y-m-d_H-i-s') . '.xml'; |
|
103 | 103 | $response = $this->getDownloadResponse($xml_string, $filename); |
104 | 104 | } else { |
105 | 105 | $zip = new ZipArchive(); |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | $response = new BinaryFileResponse($file_path); |
114 | 114 | $response->deleteFileAfterSend(); |
115 | 115 | $response->setPrivate(); |
116 | - $response->setContentDisposition(ResponseHeaderBag::DISPOSITION_ATTACHMENT, 'export_'.date('Y-m-d_H-i-s').'.zip'); |
|
116 | + $response->setContentDisposition(ResponseHeaderBag::DISPOSITION_ATTACHMENT, 'export_' . date('Y-m-d_H-i-s') . '.zip'); |
|
117 | 117 | } else { |
118 | 118 | throw new RuntimeException('Could not create a ZIP Archive.'); |
119 | 119 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | //Show error if auto mode is not possible |
131 | 131 | $this->addFlash('danger', |
132 | 132 | $this->translator->trans('sepa_export.error.department_missing_account') |
133 | - .': '.$exception->getWrongDepartment()->getName()); |
|
133 | + .': ' . $exception->getWrongDepartment()->getName()); |
|
134 | 134 | } |
135 | 135 | } |
136 | 136 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | $response = new Response(); |
146 | 146 | $response->headers->set('Cache-Control', 'private'); |
147 | 147 | $response->headers->set('Content-type', $mime_type); |
148 | - $response->headers->set('Content-Disposition', 'attachment; filename="'.$filename.'";'); |
|
148 | + $response->headers->set('Content-Disposition', 'attachment; filename="' . $filename . '";'); |
|
149 | 149 | $response->headers->set('Content-length', strlen($content)); |
150 | 150 | $response->setContent($content); |
151 | 151 |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | throw new RuntimeException('This controller only works only for Part-DB User objects!'); |
149 | 149 | } |
150 | 150 | |
151 | - if ($this->isCsrfTokenValid('regenerate_backup_codes'.$user->getId(), $request->request->get('_token'))) { |
|
151 | + if ($this->isCsrfTokenValid('regenerate_backup_codes' . $user->getId(), $request->request->get('_token'))) { |
|
152 | 152 | $backupCodeManager->regenerateBackupCodes($user); |
153 | 153 | $entityManager->flush(); |
154 | 154 | $this->addFlash('success', 'user.settings.2fa.backup_codes.regenerated'); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | throw new RuntimeException('This controller only works only for Part-DB User objects!'); |
176 | 176 | } |
177 | 177 | |
178 | - if ($this->isCsrfTokenValid('devices_reset'.$user->getId(), $request->request->get('_token'))) { |
|
178 | + if ($this->isCsrfTokenValid('devices_reset' . $user->getId(), $request->request->get('_token'))) { |
|
179 | 179 | $user->invalidateTrustedDevices(); |
180 | 180 | $entityManager->flush(); |
181 | 181 | $this->addFlash('success', 'tfa_trustedDevice.invalidate.success'); |
@@ -78,7 +78,7 @@ |
||
78 | 78 | { |
79 | 79 | $choices = []; |
80 | 80 | foreach (Department::ALLOWED_TYPES as $type) { |
81 | - $choices['department.type.'.$type] = $type; |
|
81 | + $choices['department.type.' . $type] = $type; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | return [ |
@@ -179,32 +179,32 @@ discard block |
||
179 | 179 | ]); |
180 | 180 | |
181 | 181 | $emailAction = Action::new('sendEmail', 'payment_order.action.email', 'fas fa-envelope') |
182 | - ->linkToUrl(function (PaymentOrder $paymentOrder) { |
|
182 | + ->linkToUrl(function(PaymentOrder $paymentOrder) { |
|
183 | 183 | return $this->mailToGenerator->generateContactMailLink($paymentOrder); |
184 | 184 | }) |
185 | 185 | ->setCssClass('text-dark'); |
186 | 186 | |
187 | 187 | //Hide action if no contact emails are associated with department |
188 | - $emailAction->displayIf(function (PaymentOrder $paymentOrder) { |
|
188 | + $emailAction->displayIf(function(PaymentOrder $paymentOrder) { |
|
189 | 189 | return null !== $this->mailToGenerator->generateContactMailLink($paymentOrder); |
190 | 190 | }); |
191 | 191 | |
192 | 192 | $hhv_action = Action::new('contactHHV', 'payment_order.action.contact_hhv', 'fas fa-comment-dots') |
193 | - ->linkToUrl(function (PaymentOrder $paymentOrder) { |
|
193 | + ->linkToUrl(function(PaymentOrder $paymentOrder) { |
|
194 | 194 | return $this->mailToGenerator->getHHVMailLink($paymentOrder); |
195 | 195 | }) |
196 | 196 | ->setCssClass('mr-2 text-dark'); |
197 | 197 | |
198 | 198 | $resend_confirmation_action = Action::new('resendConfirmation', 'payment_order.action.resend_confirmation', 'fas fa-redo') |
199 | 199 | ->linkToCrudAction('resendConfirmationEmail') |
200 | - ->displayIf(function (PaymentOrder $paymentOrder) { |
|
200 | + ->displayIf(function(PaymentOrder $paymentOrder) { |
|
201 | 201 | return $this->isGranted('ROLE_EDIT_PAYMENT_ORDERS') && (null === $paymentOrder->getConfirm2Timestamp() || null === $paymentOrder->getConfirm1Timestamp()); |
202 | 202 | }) |
203 | 203 | ->setCssClass('mr-2 text-dark'); |
204 | 204 | |
205 | 205 | $mathematically_correct_action = Action::new('mathematicallyCorrect', 'payment_order.action.mathematically_correct', 'fas fa-check') |
206 | 206 | ->linkToCrudAction('checkMathematicallyCorrect') |
207 | - ->displayIf(function (PaymentOrder $paymentOrder) { |
|
207 | + ->displayIf(function(PaymentOrder $paymentOrder) { |
|
208 | 208 | return $this->isGranted('ROLE_PO_MATHEMATICALLY') |
209 | 209 | && $paymentOrder->isConfirmed() |
210 | 210 | && !$paymentOrder->isMathematicallyCorrect(); |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | |
214 | 214 | $factually_correct_action = Action::new('factuallyCorrect', 'payment_order.action.factually_correct', 'fas fa-check') |
215 | 215 | ->linkToCrudAction('checkFactuallyCorrect') |
216 | - ->displayIf(function (PaymentOrder $paymentOrder) { |
|
216 | + ->displayIf(function(PaymentOrder $paymentOrder) { |
|
217 | 217 | return $this->isGranted('ROLE_PO_FACTUALLY') |
218 | 218 | && $paymentOrder->isConfirmed() |
219 | 219 | && !$paymentOrder->isFactuallyCorrect() |