@@ -15,56 +15,56 @@ class Client
1515 *
1616 * @var string
1717 */
18- static private $ store_url ;
18+ private static $ store_url ;
1919
2020 /**
2121 * Username to connect to the store API with
2222 *
2323 * @var string
2424 */
25- static private $ username ;
25+ private static $ username ;
2626
2727 /**
2828 * API key
2929 *
3030 * @var string
3131 */
32- static private $ api_key ;
32+ private static $ api_key ;
3333
3434 /**
3535 * Connection instance
3636 *
3737 * @var Connection
3838 */
39- static private $ connection ;
39+ private static $ connection ;
4040
4141 /**
4242 * Resource class name
4343 *
4444 * @var string
4545 */
46- static private $ resource ;
46+ private static $ resource ;
4747
4848 /**
4949 * API path prefix to be added to store URL for requests
5050 *
5151 * @var string
5252 */
53- static private $ path_prefix = '/api/v2 ' ;
53+ private static $ path_prefix = '/api/v2 ' ;
5454
5555 /**
5656 * Full URL path to the configured store API.
5757 *
5858 * @var string
5959 */
60- static public $ api_path ;
61- static private $ client_id ;
62- static private $ store_hash ;
63- static private $ auth_token ;
64- static private $ client_secret ;
65- static private $ stores_prefix = '/stores/%s/v2 ' ;
66- static private $ api_url = 'https://api.bigcommerce.com ' ;
67- static private $ login_url = 'https://login.bigcommerce.com ' ;
60+ public static $ api_path ;
61+ private static $ client_id ;
62+ private static $ store_hash ;
63+ private static $ auth_token ;
64+ private static $ client_secret ;
65+ private static $ stores_prefix = '/stores/%s/v2 ' ;
66+ private static $ api_url = 'https://api.bigcommerce.com ' ;
67+ private static $ login_url = 'https://login.bigcommerce.com ' ;
6868
6969 /**
7070 * Configure the API client with the required settings to access
0 commit comments