Skip to content

Commit 531171e

Browse files
Release 26.2 (#95)
1 parent d057009 commit 531171e

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Packagist Version](https://img.shields.io/packagist/v/aspose/barcode-cloud-php)](https://packagist.org/packages/aspose/barcode-cloud-php)
88

99
- API version: 4.0
10-
- Package version: 26.1.0
10+
- Package version: 26.2.0
1111
- Supported PHP versions: ">=8.0"
1212

1313
## SDK and API Version Compatibility:

src/Aspose/BarCode/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Configuration implements JsonSerializable
2020
*
2121
* @var string
2222
*/
23-
protected $clientVersion = '26.1.0';
23+
protected $clientVersion = '26.2.0';
2424

2525
/**
2626
* ClientId for API

src/Aspose/BarCode/ObjectSerializer.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,9 @@ public static function buildQuery(array $params, $encoding = PHP_QUERY_RFC3986):
292292
throw new \InvalidArgumentException('Invalid type');
293293
}
294294

295-
$castBool = function ($v) { return $v ? 'true' : 'false'; };
295+
$castBool = function ($v) {
296+
return $v ? 'true' : 'false';
297+
};
296298

297299
$qs = '';
298300
foreach ($params as $k => $v) {

0 commit comments

Comments
 (0)