Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
pierredup committed Sep 2, 2022
1 parent 705a7d8 commit 4c23915
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function sendNotification(string $event, NotificationMessageInterface $me

$notification = new ChainedNotification();

//@TODO: Settings should automatically be decoded
// @TODO: Settings should automatically be decoded
$settings = json_decode($this->settings->get(sprintf('notification/%s', $event)), true, 512, JSON_THROW_ON_ERROR);

if ((bool) $settings['email']) {
Expand Down
2 changes: 1 addition & 1 deletion src/PaymentBundle/Form/Methods/PaypalExpressCheckout.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
'password',
PasswordType::class,
[
//'help' => 'payment.settings.password.hint',
// 'help' => 'payment.settings.password.hint',
'constraints' => new NotBlank(), // @TODO: This constraint should only be added when saving for the first time
]
);
Expand Down
2 changes: 1 addition & 1 deletion src/PaymentBundle/Form/Methods/PaypalProCheckout.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
'password',
PasswordType::class,
[
//'help' => 'payment.settings.password.hint',
// 'help' => 'payment.settings.password.hint',
'constraints' => new NotBlank(), // @TODO: This constraint should only be added when saving for the first time
]
);
Expand Down

0 comments on commit 4c23915

Please sign in to comment.