@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | */ |
| 63 | 63 | public function getTemplatePath(): string |
| 64 | 64 | { |
| 65 | - return HeidelpayConfig::PROVIDER_NAME . DIRECTORY_SEPARATOR . static::PAYMENT_METHOD_TEMPLATE_PATH; |
|
| 65 | + return HeidelpayConfig::PROVIDER_NAME.DIRECTORY_SEPARATOR.static::PAYMENT_METHOD_TEMPLATE_PATH; |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | protected function createBirthdayConstraint(): Constraint |
| 133 | 133 | { |
| 134 | 134 | return new Callback([ |
| 135 | - 'callback' => function ($date, ExecutionContextInterface $context) { |
|
| 135 | + 'callback' => function($date, ExecutionContextInterface $context) { |
|
| 136 | 136 | $inputDate = new DateTime($date); |
| 137 | 137 | $minBirthDate = new DateTime(static::MIN_BIRTHDAY_DATE_STRING); |
| 138 | 138 | if ($inputDate > $minBirthDate) { |