Completed
Push — master ( 38dd03...e14ae7 )
by Scott
02:29
created

SkipShippingCalculator::calculate()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 1
1
<?php namespace Bedard\Shop\Classes;
2
3
use Bedard\Shop\Interfaces\ShippingInterface;
4
5
class SkipShippingCalculator implements ShippingInterface
6
{
7
    /**
8
     * Calculate the shipping for a cart.
9
     *
10
     * @param  Cart   $cart
11
     * @return float
12
     */
13
    public function calculate(Cart $cart)
14
    {
15
16
    }
17
}
18