FleetCart/Modules/Cart/NullCartShippingMethod.php
2023-06-11 13:14:03 +01:00

24 lines
302 B
PHP

<?php
namespace Modules\Cart;
use Modules\Support\Money;
class NullCartShippingMethod
{
public function name()
{
//
}
public function title()
{
//
}
public function cost()
{
return Money::inDefaultCurrency(0);
}
}