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

19 lines
215 B
PHP

<?php
namespace UsingInterfaces;
/**
* @OA\Schema(title="Pet")
*/
class Pet implements ColorInterface
{
/**
* {@inheritDoc}
*/
public function getColor()
{
return "green";
}
}