Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function aroundConvert( |
||
31 | ToOrderItem $subject, |
||
|
|||
32 | \Closure $proceed, |
||
33 | $quoteItem, |
||
34 | array $data |
||
35 | ) { |
||
36 | $orderItem = $proceed($quoteItem, $data); |
||
37 | |||
38 | $subSellerId = $quoteItem->getGetnetSubSellerId(); |
||
39 | |||
40 | $orderItem->setGetnetSubSellerId($subSellerId); |
||
41 | |||
42 | return $orderItem; |
||
43 | } |
||
45 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.