Replace stray TAB characters with spaces (#17311)

* Replace stray TAB characters with spaces

* update samples

---------

Co-authored-by: William Cheng <wing328hk@gmail.com>
This commit is contained in:
Viktor Szépe
2023-12-05 11:01:25 +01:00
committed by GitHub
parent 391df3b81c
commit 39d5b4ebf9
214 changed files with 698 additions and 698 deletions

View File

@@ -80,7 +80,7 @@ class Bird implements ModelInterface, ArrayAccess, JsonSerializable
*/
protected static array $openAPINullables = [
'size' => false,
'color' => false
'color' => false
];
/**

View File

@@ -80,7 +80,7 @@ class Category implements ModelInterface, ArrayAccess, JsonSerializable
*/
protected static array $openAPINullables = [
'id' => false,
'name' => false
'name' => false
];
/**

View File

@@ -76,8 +76,8 @@ class DataQuery extends Query
*/
protected static array $openAPINullables = [
'suffix' => false,
'text' => false,
'date' => false
'text' => false,
'date' => false
];
/**

View File

@@ -93,13 +93,13 @@ class DefaultValue implements ModelInterface, ArrayAccess, JsonSerializable
*/
protected static array $openAPINullables = [
'array_string_enum_ref_default' => false,
'array_string_enum_default' => false,
'array_string_default' => false,
'array_integer_default' => false,
'array_string' => false,
'array_string_nullable' => true,
'array_string_extension_nullable' => true,
'string_nullable' => true
'array_string_enum_default' => false,
'array_string_default' => false,
'array_integer_default' => false,
'array_string' => false,
'array_string_nullable' => true,
'array_string_extension_nullable' => true,
'string_nullable' => true
];
/**

View File

@@ -82,8 +82,8 @@ class NumberPropertiesOnly implements ModelInterface, ArrayAccess, JsonSerializa
*/
protected static array $openAPINullables = [
'number' => false,
'float' => false,
'double' => false
'float' => false,
'double' => false
];
/**

View File

@@ -88,11 +88,11 @@ class Pet implements ModelInterface, ArrayAccess, JsonSerializable
*/
protected static array $openAPINullables = [
'id' => false,
'name' => false,
'category' => false,
'photo_urls' => false,
'tags' => false,
'status' => false
'name' => false,
'category' => false,
'photo_urls' => false,
'tags' => false,
'status' => false
];
/**

View File

@@ -80,7 +80,7 @@ class Query implements ModelInterface, ArrayAccess, JsonSerializable
*/
protected static array $openAPINullables = [
'id' => false,
'outcomes' => false
'outcomes' => false
];
/**

View File

@@ -80,7 +80,7 @@ class Tag implements ModelInterface, ArrayAccess, JsonSerializable
*/
protected static array $openAPINullables = [
'id' => false,
'name' => false
'name' => false
];
/**

View File

@@ -84,9 +84,9 @@ class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter impleme
*/
protected static array $openAPINullables = [
'size' => false,
'color' => false,
'id' => false,
'name' => false
'color' => false,
'id' => false,
'name' => false
];
/**