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