Skip to content

Commit

Permalink
wl-36389: [EXP] Add info about available sessions to SDK model of int…
Browse files Browse the repository at this point in the history
…ro offers
  • Loading branch information
JKolerts committed May 27, 2022
1 parent a24266a commit 9252eca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion WellnessLiving/Config/WlConfigAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ abstract class WlConfigAbstract
* @see \WellnessLiving\Config\WlConfigProduction
* @see \WellnessLiving\Config\WlConfigDeveloper
*/
protected $REGION_URL=null;
protected static $REGION_URL=null;

/**
* List of rules, which is used to convert error codes to HTTP codes.
Expand Down
2 changes: 1 addition & 1 deletion WellnessLiving/Config/WlConfigDeveloper.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ abstract class WlConfigDeveloper extends WlConfigAbstract
/**
* @inheritDoc
*/
protected $REGION_URL = [
protected static $REGION_URL = [
WlRegionSid::AP_SOUTHEAST_2 => 'https://demo.wellnessliving.com/',
WlRegionSid::US_EAST_1 => 'https://staging.wellnessliving.com/',
];
Expand Down
2 changes: 1 addition & 1 deletion WellnessLiving/Config/WlConfigProduction.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ abstract class WlConfigProduction extends WlConfigAbstract
/**
* @inheritDoc
*/
protected $REGION_URL = [
protected static $REGION_URL = [
WlRegionSid::AP_SOUTHEAST_2 => 'https://au.wellnessliving.com/',
WlRegionSid::US_EAST_1 => 'https://us.wellnessliving.com/',
];
Expand Down

0 comments on commit 9252eca

Please sign in to comment.