FleetCart/Modules/Cart/NullCartShippingMethod.php

24 lines
302 B
PHP
Raw Permalink Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\Cart;
use Modules\Support\Money;
class NullCartShippingMethod
{
public function name()
{
//
}
public function title()
{
//
}
public function cost()
{
return Money::inDefaultCurrency(0);
}
}