<?php
namespace App\KommaApp\Shop\Products;
/**
* Represents something that has a price and can be put in a shopping cart
*
* @property int id
*
* Interface ProductableInterface
* @package App\KommaApp\Shop\Products
*/
interface ProductableInterface
{
public function getPrice(): float;
}