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