Skip to content

Commit aa65830

Browse files
authored
Release 25.7 (#86)
1 parent 1c3b529 commit aa65830

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Supported PHP Versions](https://img.shields.io/packagist/dependency-v/aspose/barcode-cloud-php/php)](https://packagist.org/packages/aspose/barcode-cloud-php)
77

88
- API version: 4.0
9-
- Package version: 25.6.0
9+
- Package version: 25.7.0
1010
- Supported PHP versions: ">=8.0"
1111

1212
## SDK and API Version Compatibility:
@@ -107,10 +107,10 @@ Class | Method | HTTP request | Description
107107
*GenerateApi* | [**generate**](docs/Api/GenerateApi.md#generate) | **GET** /barcode/generate/{barcodeType} | Generate barcode using GET request with parameters in route and query string.
108108
*GenerateApi* | [**generateBody**](docs/Api/GenerateApi.md#generatebody) | **POST** /barcode/generate-body | Generate barcode using POST request with parameters in body in json or xml format.
109109
*GenerateApi* | [**generateMultipart**](docs/Api/GenerateApi.md#generatemultipart) | **POST** /barcode/generate-multipart | Generate barcode using POST request with parameters in multipart form.
110-
*RecognizeApi* | [**recognize**](docs/Api/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string.
110+
*RecognizeApi* | [**recognize**](docs/Api/RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
111111
*RecognizeApi* | [**recognizeBase64**](docs/Api/RecognizeApi.md#recognizebase64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format.
112112
*RecognizeApi* | [**recognizeMultipart**](docs/Api/RecognizeApi.md#recognizemultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form.
113-
*ScanApi* | [**scan**](docs/Api/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string.
113+
*ScanApi* | [**scan**](docs/Api/ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
114114
*ScanApi* | [**scanBase64**](docs/Api/ScanApi.md#scanbase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format.
115115
*ScanApi* | [**scanMultipart**](docs/Api/ScanApi.md#scanmultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form.
116116

docs/Api/RecognizeApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All URIs are relative to https://api.aspose.cloud/v4.0, except if the operation
44

55
| Method | HTTP request | Description |
66
| ------------- | ------------- | ------------- |
7-
| [**recognize()**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server using GET requests with parameters in route and query string. |
7+
| [**recognize()**](RecognizeApi.md#recognize) | **GET** /barcode/recognize | Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead. |
88
| [**recognizeBase64()**](RecognizeApi.md#recognizeBase64) | **POST** /barcode/recognize-body | Recognize barcode from file in request body using POST requests with parameters in body in json or xml format. |
99
| [**recognizeMultipart()**](RecognizeApi.md#recognizeMultipart) | **POST** /barcode/recognize-multipart | Recognize barcode from file in request body using POST requests with parameters in multipart form. |
1010

@@ -15,7 +15,7 @@ All URIs are relative to https://api.aspose.cloud/v4.0, except if the operation
1515
recognize($barcode_type, $file_url, $recognition_mode, $recognition_image_kind): \Aspose\BarCode\Model\BarcodeResponseList
1616
```
1717

18-
Recognize barcode from file on server using GET requests with parameters in route and query string.
18+
Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
1919

2020
### Example
2121

docs/Api/ScanApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All URIs are relative to https://api.aspose.cloud/v4.0, except if the operation
44

55
| Method | HTTP request | Description |
66
| ------------- | ------------- | ------------- |
7-
| [**scan()**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server using GET requests with parameter in query string. |
7+
| [**scan()**](ScanApi.md#scan) | **GET** /barcode/scan | Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead. |
88
| [**scanBase64()**](ScanApi.md#scanBase64) | **POST** /barcode/scan-body | Scan barcode from file in request body using POST requests with parameter in body in json or xml format. |
99
| [**scanMultipart()**](ScanApi.md#scanMultipart) | **POST** /barcode/scan-multipart | Scan barcode from file in request body using POST requests with parameter in multipart form. |
1010

@@ -15,7 +15,7 @@ All URIs are relative to https://api.aspose.cloud/v4.0, except if the operation
1515
scan($file_url): \Aspose\BarCode\Model\BarcodeResponseList
1616
```
1717

18-
Scan barcode from file on server using GET requests with parameter in query string.
18+
Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
1919

2020
### Example
2121

snippets/ManualFetchToken.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
$statusCode = $response->getStatusCode();
3535

3636
if ($statusCode >= 200 && $statusCode < 300) {
37-
$bodyArray=json_decode($body, true);
38-
$token=$bodyArray["access_token"];
37+
$bodyArray = json_decode($body, true);
38+
$token = $bodyArray["access_token"];
3939
echo "Token recieved successfully\n";
4040
// To veiw token uncomment next line
4141
// echo "$token";

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 = '25.6.0';
23+
protected $clientVersion = '25.7.0';
2424

2525
/**
2626
* ClientId for API

src/Aspose/BarCode/RecognizeApi.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function getConfig()
9090
/**
9191
* Operation recognize
9292
*
93-
* Recognize barcode from file on server using GET requests with parameters in route and query string.
93+
* Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
9494
*
9595
* @param Requests\RecognizeRequestWrapper $request is a request object for operation
9696
*
@@ -112,7 +112,7 @@ public function recognize(Requests\RecognizeRequestWrapper $request)
112112
/**
113113
* Operation recognizeWithHttpInfo
114114
*
115-
* Recognize barcode from file on server using GET requests with parameters in route and query string.
115+
* Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
116116
*
117117
* @param Requests\RecognizeRequestWrapper $request is a request object for operation
118118
*
@@ -176,7 +176,7 @@ public function recognizeWithHttpInfo(Requests\RecognizeRequestWrapper $request)
176176
/**
177177
* Operation recognizeAsync
178178
*
179-
* Recognize barcode from file on server using GET requests with parameters in route and query string.
179+
* Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
180180
*
181181
* @param Requests\RecognizeRequestWrapper $request is a request object for operation
182182
*
@@ -196,7 +196,7 @@ function ($response) {
196196
/**
197197
* Operation recognizeAsyncWithHttpInfo
198198
*
199-
* Recognize barcode from file on server using GET requests with parameters in route and query string.
199+
* Recognize barcode from file on server in the Internet using GET requests with parameter in query string. For recognizing files from your hard drive use `recognize-body` or `recognize-multipart` endpoints instead.
200200
*
201201
* @param Requests\RecognizeRequestWrapper $request is a request object for operation
202202
*

src/Aspose/BarCode/ScanApi.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public function getConfig()
9090
/**
9191
* Operation scan
9292
*
93-
* Scan barcode from file on server using GET requests with parameter in query string.
93+
* Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
9494
*
9595
* @param Requests\ScanRequestWrapper $request is a request object for operation
9696
*
@@ -112,7 +112,7 @@ public function scan(Requests\ScanRequestWrapper $request)
112112
/**
113113
* Operation scanWithHttpInfo
114114
*
115-
* Scan barcode from file on server using GET requests with parameter in query string.
115+
* Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
116116
*
117117
* @param Requests\ScanRequestWrapper $request is a request object for operation
118118
*
@@ -176,7 +176,7 @@ public function scanWithHttpInfo(Requests\ScanRequestWrapper $request)
176176
/**
177177
* Operation scanAsync
178178
*
179-
* Scan barcode from file on server using GET requests with parameter in query string.
179+
* Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
180180
*
181181
* @param Requests\ScanRequestWrapper $request is a request object for operation
182182
*
@@ -196,7 +196,7 @@ function ($response) {
196196
/**
197197
* Operation scanAsyncWithHttpInfo
198198
*
199-
* Scan barcode from file on server using GET requests with parameter in query string.
199+
* Scan barcode from file on server in the Internet using GET requests with parameter in query string. For scaning files from your hard drive use `scan-body` or `scan-multipart` endpoints instead.
200200
*
201201
* @param Requests\ScanRequestWrapper $request is a request object for operation
202202
*

0 commit comments

Comments
 (0)