Skip to content

Commit

Permalink
Fixes for lower PHP versions
Browse files Browse the repository at this point in the history
  • Loading branch information
troymccabe committed Sep 8, 2017
1 parent 1c4312d commit 853be2b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,17 @@ class Client implements LoggerAwareInterface

/**
* The beta URL
*
* @TODO - Replace with `self::URL_ROOT . '/beta';` after min PHP version is 5.6
*/
const URL_BETA = self::URL_ROOT . '/beta';
const URL_BETA = 'https://api.bestbuy.com/beta';

/**
* The v1 URL
*
* @TODO - Replace with `self::URL_ROOT . '/v1';` after min PHP version is 5.6
*/
const URL_V1 = self::URL_ROOT . '/v1';
const URL_V1 = 'https://api.bestbuy.com/v1';

/**
* The configuration for the class
Expand Down

0 comments on commit 853be2b

Please sign in to comment.