Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.072 |
Changes | 0 |
1 | <?php |
||
28 | 1 | public function productShippingRule(Product $a_product): ?ShippingRule |
|
29 | { |
||
30 | 1 | foreach ($this->shipping_rules as $current_shipping_rule) |
|
31 | { |
||
32 | 1 | if ($current_shipping_rule->product()->equalTo($a_product)) |
|
33 | { |
||
34 | 1 | return $current_shipping_rule; |
|
35 | } |
||
36 | } |
||
37 | |||
38 | return null; |
||
39 | } |
||
40 | |||
52 |