coupon-admin/vendor/zircote/swagger-php/Examples/using-interfaces/ProductInterface.php

18 lines
226 B
PHP

<?php
namespace UsingInterfaces;
/**
* @OA\Schema()
*/
interface ProductInterface
{
/**
* The product name.
*
* @OA\Property(property="name", example="toaster")
*/
public function getName();
}