Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
cableman committed Jun 2, 2020
2 parents 6403ee2 + e1eb9e6 commit 4eee732
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .php_cs.dist
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ return PhpCsFixer\Config::create()
'no_superfluous_phpdoc_tags' => false,
'array_syntax' => ['syntax' => 'short'],
'array_indentation' => true,
'trim_array_spaces' => true,
])
->setFinder($finder);
10 changes: 5 additions & 5 deletions lib/Model/Cover.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Cover implements ModelInterface, ArrayAccess
protected static $swaggerTypes = [
'id' => 'string',
'type' => 'string',
'image_urls' => '\CoverService\Model\ImageUrl[]' ];
'image_urls' => '\CoverService\Model\ImageUrl[]'];

/**
* Array of property to format mappings. Used for (de)serialization
Expand All @@ -68,7 +68,7 @@ class Cover implements ModelInterface, ArrayAccess
protected static $swaggerFormats = [
'id' => null,
'type' => null,
'image_urls' => null ];
'image_urls' => null];

/**
* Array of property to type mappings. Used for (de)serialization
Expand Down Expand Up @@ -99,7 +99,7 @@ public static function swaggerFormats()
protected static $attributeMap = [
'id' => 'id',
'type' => 'type',
'image_urls' => 'imageUrls' ];
'image_urls' => 'imageUrls'];

/**
* Array of attributes to setter functions (for deserialization of responses)
Expand All @@ -109,7 +109,7 @@ public static function swaggerFormats()
protected static $setters = [
'id' => 'setId',
'type' => 'setType',
'image_urls' => 'setImageUrls' ];
'image_urls' => 'setImageUrls'];

/**
* Array of attributes to getter functions (for serialization of requests)
Expand All @@ -119,7 +119,7 @@ public static function swaggerFormats()
protected static $getters = [
'id' => 'getId',
'type' => 'getType',
'image_urls' => 'getImageUrls' ];
'image_urls' => 'getImageUrls'];

/**
* Array of attributes where the key is the local name,
Expand Down
10 changes: 5 additions & 5 deletions lib/Model/ImageUrl.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ImageUrl implements ModelInterface, ArrayAccess
protected static $swaggerTypes = [
'url' => 'string',
'format' => 'string',
'size' => 'string' ];
'size' => 'string'];

/**
* Array of property to format mappings. Used for (de)serialization
Expand All @@ -68,7 +68,7 @@ class ImageUrl implements ModelInterface, ArrayAccess
protected static $swaggerFormats = [
'url' => 'url',
'format' => null,
'size' => null ];
'size' => null];

/**
* Array of property to type mappings. Used for (de)serialization
Expand Down Expand Up @@ -99,7 +99,7 @@ public static function swaggerFormats()
protected static $attributeMap = [
'url' => 'url',
'format' => 'format',
'size' => 'size' ];
'size' => 'size'];

/**
* Array of attributes to setter functions (for deserialization of responses)
Expand All @@ -109,7 +109,7 @@ public static function swaggerFormats()
protected static $setters = [
'url' => 'setUrl',
'format' => 'setFormat',
'size' => 'setSize' ];
'size' => 'setSize'];

/**
* Array of attributes to getter functions (for serialization of requests)
Expand All @@ -119,7 +119,7 @@ public static function swaggerFormats()
protected static $getters = [
'url' => 'getUrl',
'format' => 'getFormat',
'size' => 'getSize' ];
'size' => 'getSize'];

/**
* Array of attributes where the key is the local name,
Expand Down

0 comments on commit 4eee732

Please sign in to comment.