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