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

19 lines
215 B
PHP
Raw Normal View History

2021-11-18 09:57:04 +00:00
<?php
namespace UsingInterfaces;
/**
* @OA\Schema(title="Pet")
*/
class Pet implements ColorInterface
{
/**
* {@inheritDoc}
*/
public function getColor()
{
return "green";
}
}