Files
openapi-generator/samples/server/petstore/php-slim/lib/Models/Capitalization.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

24 lines
471 B
PHP

<?php
/*
* Capitalization
*/
namespace \Models;
/*
* Capitalization
*/
class Capitalization {
/* @var string $smallCamel */
private $smallCamel;
/* @var string $capitalCamel */
private $capitalCamel;
/* @var string $smallSnake */
private $smallSnake;
/* @var string $capitalSnake */
private $capitalSnake;
/* @var string $sCAETHFlowPoints */
private $sCAETHFlowPoints;
/* @var string $aTTNAME Name of the pet */
private $aTTNAME;
}