FleetCart/Modules/Cart/NullCartShippingMethod.php
2023-12-03 14:07:47 +00:00

26 lines
313 B
PHP

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