17 lines
217 B
PHP
17 lines
217 B
PHP
|
<?php
|
||
|
|
||
|
namespace UsingTraits;
|
||
|
|
||
|
/**
|
||
|
* @OA\Schema(title="Blink trait", schema="CustomName/Blink")
|
||
|
*/
|
||
|
trait Blink {
|
||
|
|
||
|
/**
|
||
|
* The frequency.
|
||
|
*
|
||
|
* @OA\Property(example=1)
|
||
|
*/
|
||
|
public $frequency;
|
||
|
}
|