public function __construct()
 {
     $apiConfig = Config::getAll();
     $this->path = $apiConfig['ioFileCache_directory'];
 }
 /**
  * Declare if objects should be returned by the api service classes.
  *
  * @param boolean $useObjects True if objects should be returned by the service classes.
  * False if associative arrays should be returned (default behavior).
  * @experimental
  */
 public function setUseObjects($useObjects)
 {
     $apiConfig = Config::getAll();
     $apiConfig['use_objects'] = $useObjects;
 }