<?php
namespace App\Komma\Shop\Orders;
/**
* Represents an ordered productable
*
* @property int id
* @property int quantity
* @property int shippedQuantity
* Interface ProductableInterface
*/
interface OrderedProductableInterface
{
/**
* Price is in cents
*
* @return int
*/
public function getPrice(): int;
}