Skip to content

Commit 71fde73

Browse files
committed
Updated sources
1 parent 5a161da commit 71fde73

12 files changed

Lines changed: 1861 additions & 360 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ $configuration = new GroupDocs\Conversion\Configuration();
6363
$configuration->setAppSid("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
6464
$configuration->setAppKey("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
6565

66-
$conversionApi = new GroupDocs\Conversion\ConversionApi($configuration);
66+
$api = new GroupDocs\Conversion\InfoApi($configuration);
6767

6868
try {
6969
$request = new GroupDocs\Conversion\Model\Requests\GetSupportedConversionTypesRequest();
70-
$response = $conversionApi->getSupportedConversionTypes($request);
70+
$response = $api->getSupportedConversionTypes($request);
7171

7272
foreach($response as $key => $format) {
7373
echo $format->getSourceFormat();

src/GroupDocs/Conversion/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Configuration
9595
* Version of client SDK
9696
*
9797
*/
98-
protected $clientVersion = '19.4';
98+
protected $clientVersion = '19.5';
9999

100100
/*
101101
* Constructor
@@ -290,7 +290,7 @@ public function getClientName()
290290
}
291291

292292
/*
293-
* Gets client version, default value is '19.4'
293+
* Gets client version, default value is '19.5'
294294
*
295295
*/
296296
public function getClientVersion()
@@ -308,7 +308,7 @@ public static function toDebugReport()
308308
$report = 'PHP SDK (GroupDocs\Conversion) Debug Report:' . PHP_EOL;
309309
$report .= ' OS: ' . php_uname() . PHP_EOL;
310310
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
311-
$report .= ' SDK Package Version: 19.4' . PHP_EOL;
311+
$report .= ' SDK Package Version: 19.5' . PHP_EOL;
312312
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
313313

314314
return $report;

0 commit comments

Comments
 (0)