| 1 | <?php |
||
| 23 | final class OrderPricesRecalculator implements OrderProcessorInterface |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @var ProductVariantPriceCalculatorInterface |
||
| 27 | */ |
||
| 28 | private $productVariantPriceCalculator; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param ProductVariantPriceCalculatorInterface $productVariantPriceCalculator |
||
| 32 | */ |
||
| 33 | public function __construct(ProductVariantPriceCalculatorInterface $productVariantPriceCalculator) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * {@inheritdoc} |
||
| 40 | */ |
||
| 41 | public function process(BaseOrderInterface $order) |
||
| 58 | } |
||
| 59 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.