forked from loafle/openapi-generator-original
* add all parent names * clean up supportsInheritance * fix npe * fix allVars, fix test cases * add more tests, remove comments * update docker m2 cache dir, add more tests, fix mandatory * update samples * regenerate js spec files * add logic to detect self reference * add isSelfReference flag to codegen property * add ruby tests for cat model * remove debugging info * fix JS allvars not have x-js-doctype * update samples * update js samples
22 lines
259 B
PHP
22 lines
259 B
PHP
<?php
|
|
/**
|
|
* Cat
|
|
*/
|
|
namespace OpenAPIServer\Model;
|
|
|
|
/**
|
|
* Cat
|
|
*/
|
|
class Cat
|
|
{
|
|
|
|
/** @var string $className */
|
|
private $className;
|
|
|
|
/** @var string $color */
|
|
private $color;
|
|
|
|
/** @var bool $declawed */
|
|
private $declawed;
|
|
}
|