Skip to content

Commit

Permalink
phpcbf
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Jun 7, 2024
1 parent 21d9e9e commit 454a9d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion pronamic-pay-gravity-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,3 @@ function ( $gateways ) {
}
);
}

12 changes: 6 additions & 6 deletions src/IssuersField.php
Original file line number Diff line number Diff line change
Expand Up @@ -295,21 +295,21 @@ public function get_field_input( $form, $value = '', $entry = null ) {
// Icon file and size.
switch ( $this->pronamicPayDisplayMode ) {
case 'icons-24':
$display_width = 24;
$display_height = 24;
$display_width = 24;
$display_height = 24;
$image_variation = 'icon-512x512.svg';

break;
case 'icons-64':
$display_width = 64;
$display_height = 64;
$display_width = 64;
$display_height = 64;
$image_variation = 'icon-512x512.svg';

break;
case 'icons-125':
default:
$display_width = 125;
$display_height = 70;
$display_width = 125;
$display_height = 70;
$image_variation = '640x360.svg';
}

Expand Down

0 comments on commit 454a9d5

Please sign in to comment.