Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • project/smugmug_api
  • issue/smugmug_api-3168947
  • issue/smugmug_api-3148871
  • issue/smugmug_api-3168940
  • issue/smugmug_api-3168944
  • issue/smugmug_api-3438640
6 results
Show changes
Commits on Source (1)
...@@ -42,6 +42,34 @@ class Client { ...@@ -42,6 +42,34 @@ class Client {
*/ */
protected $cacheBackend; protected $cacheBackend;
/**
* The API base uri.
*
* @var string
*/
protected $api_base_uri;
/**
* The API maximum cache age.
*
* @var string
*/
protected $api_cache_maximum_age;
/**
* The API key
*
* @var string
*/
protected $api_key;
/**
* The guzzle client.
*
* @var \GuzzleHttp\Client
*/
protected $guzzleClient;
/** /**
* Client constructor. * Client constructor.
* *
......