Skip to content

Commit 005ad05

Browse files
authored
Links and shields (#13)
* Links added * Autoformat
1 parent 52971de commit 005ad05

File tree

82 files changed

+1014
-866
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1014
-866
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
# Aspose.BarCode Cloud SDK for PHP
22

3+
[![License](https://img.shields.io/github/license/aspose-barcode-cloud/aspose-barcode-cloud-php)](LICENSE)
4+
[![PHP Composer](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-php/actions/workflows/php.yml/badge.svg)](https://github.com/aspose-barcode-cloud/aspose-barcode-cloud-php/actions/workflows/php.yml)
5+
[![Packagist Version](https://img.shields.io/packagist/v/aspose/barcode-cloud-php)](https://packagist.org/packages/aspose/barcode-cloud-php)
6+
37
- API version: 3.0
48
- Package version: 21.3.0
59

6-
Aspose.BarCode for Cloud is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.
10+
## Demo applications
11+
12+
[Generate Barcode](https://products.aspose.app/barcode/generate) | [Recognize Barcode](https://products.aspose.app/barcode/recognize)
13+
:---: | :---:
14+
[![Generate](https://products.aspose.app/barcode/generate/img/aspose_generate-app-48.png)](https://products.aspose.app/barcode/generate) | [![Recognize](https://products.aspose.app/barcode/recognize/img/aspose_recognize-app-48.png)](https://products.aspose.app/barcode/recognize)
15+
16+
[Aspose.BarCode for Cloud](https://products.aspose.cloud/barcode/cloud) is a REST API for Linear, 2D and postal barcode generation and recognition in the cloud. API recognizes and generates barcode images in a variety of formats. Barcode REST API allows to specify barcode image attributes like image width, height, border style and output image format in order to customize the generation process. Developers can also specify the barcode type and text attributes such as text location and font styles in order to suit the application requirements.
717

818
This repository contains Aspose.BarCode Cloud SDK for PHP source code.
919

index.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file="index.php">

src/Aspose/BarCode/ApiException.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file=".php">
@@ -29,16 +31,16 @@
2931
//
3032
// This source code was auto-generated by AsposeBarcodeCloudCodegen.
3133
//
34+
3235
namespace Aspose\BarCode;
3336

34-
use \Exception;
37+
use Exception;
3538

3639
/**
3740
* ApiException class for exception
3841
*/
3942
class ApiException extends Exception
4043
{
41-
4244
/**
4345
* The HTTP body of the server response either as Json or string.
4446
*

src/Aspose/BarCode/BarcodeApi.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file="BarcodeApi.php">
@@ -29,6 +31,7 @@
2931
//
3032
// This source code was auto-generated by AsposeBarcodeCloudCodegen.
3133
//
34+
3235
namespace Aspose\BarCode;
3336

3437
use GuzzleHttp\Client;

src/Aspose/BarCode/Configuration.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file=".php">
@@ -29,6 +31,7 @@
2931
//
3032
// This source code was auto-generated by AsposeBarcodeCloudCodegen.
3133
//
34+
3235
namespace Aspose\BarCode;
3336

3437
use JsonSerializable;

src/Aspose/BarCode/FileApi.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file="FileApi.php">
@@ -29,6 +31,7 @@
2931
//
3032
// This source code was auto-generated by AsposeBarcodeCloudCodegen.
3133
//
34+
3235
namespace Aspose\BarCode;
3336

3437
use GuzzleHttp\Client;

src/Aspose/BarCode/FolderApi.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file="FolderApi.php">
@@ -29,6 +31,7 @@
2931
//
3032
// This source code was auto-generated by AsposeBarcodeCloudCodegen.
3133
//
34+
3235
namespace Aspose\BarCode;
3336

3437
use GuzzleHttp\Client;

src/Aspose/BarCode/HeaderSelector.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file=".php">
@@ -29,16 +31,16 @@
2931
//
3032
// This source code was auto-generated by AsposeBarcodeCloudCodegen.
3133
//
34+
3235
namespace Aspose\BarCode;
3336

34-
use \Exception;
37+
use Exception;
3538

3639
/*
3740
* ApiException Class Doc Comment
3841
*/
3942
class HeaderSelector
4043
{
41-
4244
/*
4345
* Selects headers for request
4446
* @param string[] $accept type of header

src/Aspose/BarCode/Model/ApiError.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file="ApiError.php">
@@ -35,7 +37,7 @@
3537

3638
namespace Aspose\BarCode\Model;
3739

38-
use \ArrayAccess;
40+
use ArrayAccess;
3941
use Aspose\BarCode\ObjectSerializer;
4042

4143
/*
@@ -44,7 +46,7 @@
4446
*/
4547
class ApiError implements ArrayAccess
4648
{
47-
const DISCRIMINATOR = null;
49+
public const DISCRIMINATOR = null;
4850

4951
/*
5052
* The original name of the model.
@@ -180,9 +182,9 @@ public function getModelName()
180182
return self::$swaggerModelName;
181183
}
182184

183-
184185

185-
186+
187+
186188

187189
/*
188190
* Associative array for storing property values

src/Aspose/BarCode/Model/ApiErrorResponse.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php declare(strict_types=1);
1+
<?php
2+
3+
declare(strict_types=1);
24
/*
35
* --------------------------------------------------------------------------------------------------------------------
46
* <copyright company="Aspose" file="ApiErrorResponse.php">
@@ -35,7 +37,7 @@
3537

3638
namespace Aspose\BarCode\Model;
3739

38-
use \ArrayAccess;
40+
use ArrayAccess;
3941
use Aspose\BarCode\ObjectSerializer;
4042

4143
/*
@@ -44,7 +46,7 @@
4446
*/
4547
class ApiErrorResponse implements ArrayAccess
4648
{
47-
const DISCRIMINATOR = null;
49+
public const DISCRIMINATOR = null;
4850

4951
/*
5052
* The original name of the model.
@@ -165,9 +167,9 @@ public function getModelName()
165167
return self::$swaggerModelName;
166168
}
167169

168-
169170

170-
171+
172+
171173

172174
/*
173175
* Associative array for storing property values

0 commit comments

Comments
 (0)