Skip to content

Commit

Permalink
Generate version 2.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
christiaanderidder committed Sep 12, 2019
1 parent 5f35cb6 commit b930185
Show file tree
Hide file tree
Showing 58 changed files with 3,457 additions and 610 deletions.
33 changes: 19 additions & 14 deletions .php_cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
<?php

return Symfony\CS\Config::create()
->level(Symfony\CS\FixerInterface::PSR2_LEVEL)
return PhpCsFixer\Config::create()
->setUsingCache(true)
->fixers(
[
'ordered_use',
'phpdoc_order',
'short_array_syntax',
'strict',
'strict_param'
]
)
->finder(
Symfony\CS\Finder\DefaultFinder::create()
->in(__DIR__)
->setRules([
'@PSR2' => true,
'ordered_imports' => true,
'phpdoc_order' => true,
'array_syntax' => [ 'syntax' => 'short' ],
'strict_comparison' => true,
'strict_param' => true,
'no_trailing_whitespace' => false,
'no_trailing_whitespace_in_comment' => false,
'braces' => false,
'single_blank_line_at_eof' => false,
'blank_line_after_namespace' => false,
])
->setFinder(
PhpCsFixer\Finder::create()
->exclude('test')
->exclude('tests')
->in(__DIR__)
);
2 changes: 1 addition & 1 deletion .swagger-codegen/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.0-SNAPSHOT
2.4.8-SNAPSHOT
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "channelengine/merchant-api-client-php",
"version": "2.8.2",
"version": "2.8.5",
"description": "",
"keywords": [
"swagger",
Expand All @@ -26,7 +26,7 @@
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "~1.12"
"friendsofphp/php-cs-fixer": "~2.12"
},
"autoload": {
"psr-4": { "ChannelEngine\\Merchant\\ApiClient\\" : "lib/" }
Expand Down
2 changes: 1 addition & 1 deletion lib/Api/CancellationApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* OpenAPI spec version: 2.0.0
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
* Swagger Codegen version: 2.4.0-SNAPSHOT
* Swagger Codegen version: 2.4.8-SNAPSHOT
*/

/**
Expand Down
Loading

0 comments on commit b930185

Please sign in to comment.