mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-10 08:31:22 +00:00
* [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
226 B
PHP
19 lines
226 B
PHP
<?php
|
|
/**
|
|
* EnumArrays
|
|
*/
|
|
namespace OpenAPIServer\Model;
|
|
|
|
/**
|
|
* EnumArrays
|
|
*/
|
|
class EnumArrays {
|
|
|
|
/** @var string $justSymbol */
|
|
private $justSymbol;
|
|
|
|
/** @var string[] $arrayEnum */
|
|
private $arrayEnum;
|
|
|
|
}
|