brandon14/ebay-sdk-php

View on GitHub
templates/model.mustache

Summary

Maintainability
Test Coverage
<?php

declare(strict_types=1);

{{#models}}
{{#model}}
/**
 * {{classname}}
 *
 * PHP version ^7.2 || ^8.0
 *
 * @category Class
 * @package  {{invokerPackage}}
 * @author   OpenAPI Generator team
 * @link     https://openapi-generator.tech
 */

{{>partial_header}}
/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

namespace {{modelPackage}};
{{^isEnum}}
{{^parentSchema}}

use ArrayAccess;
{{/parentSchema}}
{{/isEnum}}
use {{invokerPackage}}\ObjectSerializer;

/**
 * {{classname}} Class Doc Comment
 *
 * @category Class
{{#description}}
 * @description {{.}}
{{/description}}
 * @package  {{invokerPackage}}
 * @author   OpenAPI Generator team
 * @link     https://openapi-generator.tech
{{^isEnum}}
 * @implements \ArrayAccess<TKey, TValue>
 * @template TKey int|null
 * @template TValue mixed|null
{{/isEnum}}
 */
{{#isEnum}}{{>model_enum}}{{/isEnum}}{{^isEnum}}{{>model_generic}}{{/isEnum}}
{{/model}}{{/models}}