24 lines
302 B
PHP
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);
|
||
|
}
|
||
|
}
|