You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
396 B
26 lines
396 B
<?php
|
|
|
|
namespace UsingInterfaces;
|
|
|
|
/**
|
|
* @OA\Schema(title="Product model")
|
|
*/
|
|
class Product implements ProductInterface
|
|
{
|
|
|
|
/**
|
|
* The unique identifier of a product in our catalog.
|
|
*
|
|
* @var integer
|
|
* @OA\Property(format="int64", example=1)
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function getName()
|
|
{
|
|
return "kettle";
|
|
}
|
|
}
|
|
|