Skip to content

Commit

Permalink
Improve constants visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
webeweb committed Mar 18, 2024
1 parent 9c8f7e7 commit 940acc8
Show file tree
Hide file tree
Showing 22 changed files with 117 additions and 117 deletions.
12 changes: 6 additions & 6 deletions src/Api/DeliveryReportCallbackInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,40 +26,40 @@ interface DeliveryReportCallbackInterface {
*
* @var string
*/
const PARAMETER_DATE_RECEPTION = "date_reception";
public const PARAMETER_DATE_RECEPTION = "date_reception";

/**
* Parameter "MCC MNC".
*
* @var string
*/
const PARAMETER_MCC_MNC = "mcc_mnc";
public const PARAMETER_MCC_MNC = "mcc_mnc";

/**
* Parameter "numero".
*
* @var string
*/
const PARAMETER_NUMERO = "numero";
public const PARAMETER_NUMERO = "numero";

/**
* Parameter "ref client".
*
* @var string
*/
const PARAMETER_REF_CLIENT = "refClient";
public const PARAMETER_REF_CLIENT = "refClient";

/**
* Parameter "smsID".
*
* @var string
*/
const PARAMETER_SMS_ID = "smsID";
public const PARAMETER_SMS_ID = "smsID";

/**
* Parameter "statut".
*
* @var string
*/
const PARAMETER_STATUT = "statut";
public const PARAMETER_STATUT = "statut";
}
4 changes: 2 additions & 2 deletions src/Api/RequestInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ interface RequestInterface {
*
* @var string
*/
const REQUEST_DATETIME_FORMAT = "dmY-H:i";
public const REQUEST_DATETIME_FORMAT = "dmY-H:i";

/**
* Request date format.
*
* @var string
*/
const REQUEST_DATE_FORMAT = "dmY";
public const REQUEST_DATE_FORMAT = "dmY";
}
Loading

0 comments on commit 940acc8

Please sign in to comment.