forked from loafle/openapi-generator-original
* [Slim] Decouple Api files into separated PHP Classes This enhancement required for modular testing and code coverage generating. * [Slim] Define all app routes in SlimRouter PHP Class. Generate new samples
19 lines
321 B
PHP
19 lines
321 B
PHP
<?php
|
|
/**
|
|
* AdditionalPropertiesClass
|
|
*/
|
|
namespace OpenAPIServer\Model;
|
|
|
|
/**
|
|
* AdditionalPropertiesClass
|
|
*/
|
|
class AdditionalPropertiesClass {
|
|
|
|
/** @var map[string,string] $mapProperty */
|
|
private $mapProperty;
|
|
|
|
/** @var map[string,map[string,string]] $mapOfMapProperty */
|
|
private $mapOfMapProperty;
|
|
|
|
}
|