Skip to content

Commit b930185

Browse files
Generate version 2.8.5
1 parent 5f35cb6 commit b930185

File tree

58 files changed

+3457
-610
lines changed

Some content is hidden

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

58 files changed

+3457
-610
lines changed

.php_cs

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
<?php
22

3-
return Symfony\CS\Config::create()
4-
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
3+
return PhpCsFixer\Config::create()
54
->setUsingCache(true)
6-
->fixers(
7-
[
8-
'ordered_use',
9-
'phpdoc_order',
10-
'short_array_syntax',
11-
'strict',
12-
'strict_param'
13-
]
14-
)
15-
->finder(
16-
Symfony\CS\Finder\DefaultFinder::create()
17-
->in(__DIR__)
5+
->setRules([
6+
'@PSR2' => true,
7+
'ordered_imports' => true,
8+
'phpdoc_order' => true,
9+
'array_syntax' => [ 'syntax' => 'short' ],
10+
'strict_comparison' => true,
11+
'strict_param' => true,
12+
'no_trailing_whitespace' => false,
13+
'no_trailing_whitespace_in_comment' => false,
14+
'braces' => false,
15+
'single_blank_line_at_eof' => false,
16+
'blank_line_after_namespace' => false,
17+
])
18+
->setFinder(
19+
PhpCsFixer\Finder::create()
20+
->exclude('test')
21+
->exclude('tests')
22+
->in(__DIR__)
1823
);

.swagger-codegen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0-SNAPSHOT
1+
2.4.8-SNAPSHOT

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "channelengine/merchant-api-client-php",
3-
"version": "2.8.2",
3+
"version": "2.8.5",
44
"description": "",
55
"keywords": [
66
"swagger",
@@ -26,7 +26,7 @@
2626
"require-dev": {
2727
"phpunit/phpunit": "^4.8",
2828
"squizlabs/php_codesniffer": "~2.6",
29-
"friendsofphp/php-cs-fixer": "~1.12"
29+
"friendsofphp/php-cs-fixer": "~2.12"
3030
},
3131
"autoload": {
3232
"psr-4": { "ChannelEngine\\Merchant\\ApiClient\\" : "lib/" }

lib/Api/CancellationApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* OpenAPI spec version: 2.0.0
1818
*
1919
* Generated by: https://github.com/swagger-api/swagger-codegen.git
20-
* Swagger Codegen version: 2.4.0-SNAPSHOT
20+
* Swagger Codegen version: 2.4.8-SNAPSHOT
2121
*/
2222

2323
/**

0 commit comments

Comments
 (0)