coupon-admin/vendor/zircote/swagger-php/Examples/using-traits/TrickyProduct.php

21 lines
291 B
PHP
Raw Normal View History

2021-11-18 17:57:04 +08:00
<?php
namespace UsingTraits;
use UsingTraits\Blink as TheBlink;
/**
* @OA\Schema(title="TrickyProduct model")
* )
*/
class TrickyProduct extends SimpleProduct {
use TheBlink;
/**
* The trick.
*
* @OA\Property(example="recite poem")
*/
public $trick;
}