openapi-generator/samples/server/petstore/php-slim4/lib/Model/AdditionalPropertiesClass.php
Yuriy Belenko 6dcdf5c311 [Slim4] Add ref support to Data Mocker (#4932)
* [Slim4] Add new method to Mocker interface

* [Slim4] Add implementation and tests for new method

* [Slim4] Add test fixture to encrease code coverage

* [Slim4] Add ref support to mockArray method

* [Slim4] Add mockFromRef method

* [Slim4] Add ref support to mockObject method

* [Slim4] Add ModelInterface

* [Slim4] Refresh samples

* [Slim4] Add ref support to mockFromSchema method

* [Slim4] Run all test suites by default test command

As it turnes out to generate coverage report for a whole project I need
to run all test suites at once.

* [Slim4] Fix enum option of string mocking
2020-01-10 16:27:43 +08:00

156 lines
3.3 KiB
PHP

<?php
/**
* AdditionalPropertiesClass
*
* PHP version 7.1
*
* @package OpenAPIServer\Model
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
/**
* NOTE: This class is auto generated by the openapi generator program.
* https://github.com/openapitools/openapi-generator
*/
namespace OpenAPIServer\Model;
use OpenAPIServer\Interfaces\ModelInterface;
/**
* AdditionalPropertiesClass
*
* @package OpenAPIServer\Model
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
class AdditionalPropertiesClass implements ModelInterface
{
private const MODEL_SCHEMA = <<<'SCHEMA'
{
"type" : "object",
"properties" : {
"map_string" : {
"type" : "object",
"additionalProperties" : {
"type" : "string"
}
},
"map_number" : {
"type" : "object",
"additionalProperties" : {
"type" : "number"
}
},
"map_integer" : {
"type" : "object",
"additionalProperties" : {
"type" : "integer"
}
},
"map_boolean" : {
"type" : "object",
"additionalProperties" : {
"type" : "boolean"
}
},
"map_array_integer" : {
"type" : "object",
"additionalProperties" : {
"type" : "array",
"items" : {
"type" : "integer"
}
}
},
"map_array_anytype" : {
"type" : "object",
"additionalProperties" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : { }
}
}
},
"map_map_string" : {
"type" : "object",
"additionalProperties" : {
"type" : "object",
"additionalProperties" : {
"type" : "string"
}
}
},
"map_map_anytype" : {
"type" : "object",
"additionalProperties" : {
"type" : "object",
"additionalProperties" : {
"type" : "object",
"properties" : { }
}
}
},
"anytype_1" : {
"type" : "object",
"properties" : { }
},
"anytype_2" : {
"type" : "object"
},
"anytype_3" : {
"type" : "object",
"properties" : { }
}
}
}
SCHEMA;
/** @var map[string,string] $mapString */
private $mapString;
/** @var map[string,float] $mapNumber */
private $mapNumber;
/** @var map[string,int] $mapInteger */
private $mapInteger;
/** @var map[string,bool] $mapBoolean */
private $mapBoolean;
/** @var map[string,int[]] $mapArrayInteger */
private $mapArrayInteger;
/** @var map[string,object[]] $mapArrayAnytype */
private $mapArrayAnytype;
/** @var map[string,map[string,string]] $mapMapString */
private $mapMapString;
/** @var map[string,map[string,object]] $mapMapAnytype */
private $mapMapAnytype;
/** @var object $anytype1 */
private $anytype1;
/** @var object $anytype2 */
private $anytype2;
/** @var object $anytype3 */
private $anytype3;
/**
* Returns model schema.
*
* @param bool $assoc When TRUE, returned objects will be converted into associative arrays. Default FALSE.
*
* @return array
*/
public static function getOpenApiSchema($assoc = false)
{
return json_decode(static::MODEL_SCHEMA, $assoc);
}
}