cart integration

This commit is contained in:
Etienne Roudeix
2013-09-16 14:31:34 +02:00
parent e0a48df23e
commit c7b3aea7f0
4 changed files with 17 additions and 8 deletions

View File

@@ -23,13 +23,16 @@
namespace Thelia\Module;
use Thelia\Model\Country;
interface DeliveryModuleInterface extends BaseModuleInterface
{
/**
*
* calculate and return delivery price
*
* @param Country $country
*
* @return mixed
*/
public function calculate($country = null);
public function calculate(Country $country);
}