FleetCart/Modules/Cart/NullCartShippingMethod.php

26 lines
313 B
PHP
Raw Normal View History

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