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
202 B
PHP
19 lines
202 B
PHP
<?php
|
|
/**
|
|
* Animal
|
|
*/
|
|
namespace OpenAPIServer\Model;
|
|
|
|
/**
|
|
* Animal
|
|
*/
|
|
class Animal {
|
|
|
|
/** @var string $className */
|
|
private $className;
|
|
|
|
/** @var string $color */
|
|
private $color;
|
|
|
|
}
|