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

21 lines
307 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php
namespace UsingTraits;
use UsingTraits\Decoration\Bells;
/**
* @OA\Schema(title="Bells and Whistles trait")
*/
trait BellsAndWhistles {
use Bells;
use \UsingTraits\Decoration\Whistles;
/**
* The plating.
*
* @OA\Property(example="gold")
*/
public $plating;
}