21 lines
291 B
PHP
21 lines
291 B
PHP
|
<?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;
|
||
|
}
|