forked from loafle/openapi-generator-original
[Slim] Improve codebase decouple (#438)
* [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
This commit is contained in:
committed by
William Cheng
parent
3408866b79
commit
9eeedede49
18
samples/server/petstore/php-slim/lib/Model/EnumArrays.php
Normal file
18
samples/server/petstore/php-slim/lib/Model/EnumArrays.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
/**
|
||||
* EnumArrays
|
||||
*/
|
||||
namespace OpenAPIServer\Model;
|
||||
|
||||
/**
|
||||
* EnumArrays
|
||||
*/
|
||||
class EnumArrays {
|
||||
|
||||
/** @var string $justSymbol */
|
||||
private $justSymbol;
|
||||
|
||||
/** @var string[] $arrayEnum */
|
||||
private $arrayEnum;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user