Skip to content

Commit

Permalink
Removec incompatible php 7 code
Browse files Browse the repository at this point in the history
  • Loading branch information
Franck Allimant committed Sep 6, 2024
1 parent 9e73183 commit cf7a7a7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Config/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<descriptive locale="fr_FR">
<title>Paiement en carte bancaire avec Paybox</title>
</descriptive>
<version>1.2.3</version>
<version>1.2.4</version>
<author>
<name>Franck Allimant</name>
<email>franck@cqfdev.fr</email>
Expand Down
10 changes: 5 additions & 5 deletions Paybox.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@
class Paybox extends AbstractPaymentModule
{
/** The module domain for internationalisation */
public const MODULE_DOMAIN = 'paybox';
const MODULE_DOMAIN = 'paybox';

/** The module domain for internationalisation */
public const MODULE_CODE = 'Paybox';
const MODULE_CODE = 'Paybox';

/** The confirmation message identifier */
public const CONFIRMATION_MESSAGE_NAME = 'paybox_payment_confirmation';
const CONFIRMATION_MESSAGE_NAME = 'paybox_payment_confirmation';

// Liste des variables retournées par paybox
public const PARAMETRES_RETOUR = 'montant:M;ref:R;auto:A;trans:T;erreur:E;sign:K';
const PARAMETRES_RETOUR = 'montant:M;ref:R;auto:A;trans:T;erreur:E;sign:K';

/** The notification of payment confirmation */
public const NOTIFICATION_MESSAGE_NAME = 'paybox_payment_status_notification';
const NOTIFICATION_MESSAGE_NAME = 'paybox_payment_status_notification';

public function postActivation(ConnectionInterface $con = null): void
{
Expand Down

0 comments on commit cf7a7a7

Please sign in to comment.