Files
openapi-generator/samples/server/petstore/php-slim/lib/Models/MixedPropertiesAndAdditionalPropertiesClass.php
Yuriy Belenko 36f4452351 [Slim] Upgrade API server integration tests to use Fake Petstore spec (#354)
* [Slim] Shell script points to petstore-with-fake-endpoints-models-for-testing.yaml. Slim init and new models has been generated.

* [Slim] Bugfix. Special value */* in opperation produces escaped to avoid PHP syntax errors.

* [Slim] Add own private static final LOGGER

* [Slim] Bugfix. toModelName method copied from PHPClient codegen which handles Fake Petstore spec much better.

* [Slim] Sort operations in supporting files data to avoid shadowing static routes.

* [Slim] Mustache index.php update. Params parsing enhanced.

* [Slim] Tiny cleanup. Unnecessary empty space removed.

* [Slim] Security fix. toOperationId method copied from PhpClientCodegen.

* [Slim] Bugfix. formData params parsing restored.

* [Slim] Proper .gitignore added to PhpSlimServerCodegen. Vendor folder with all dependencies removed to keep repo more clean.

* [Slim] Slim dependency update to 3.10.0. Few test fake endpoints fixed by this upgrade.
2018-06-23 12:10:38 +09:00

18 lines
351 B
PHP

<?php
/*
* MixedPropertiesAndAdditionalPropertiesClass
*/
namespace \Models;
/*
* MixedPropertiesAndAdditionalPropertiesClass
*/
class MixedPropertiesAndAdditionalPropertiesClass {
/* @var UUID $uuid */
private $uuid;
/* @var DateTime $dateTime */
private $dateTime;
/* @var map[string,\\Models\Animal] $map */
private $map;
}