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

17 lines
190 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php
namespace UsingTraits;
/**
* @OA\Schema(title="Colour trait")
*/
trait Colour {
/**
* The colour.
*
* @OA\Property(example="red")
*/
public $colour;
}