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

21 lines
307 B
PHP

<?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;
}