Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
30 | public function __construct( |
||
31 | SessionParametersFactory $factory, |
||
32 | LivePrice $livePriceApi, |
||
33 | LivePricePostProcessor $livePricePostProcessor |
||
34 | ) { |
||
35 | $this->sessionParametersFactory = $factory; |
||
36 | $this->livePricesApi = $livePriceApi; |
||
37 | $this->livePricePostProcessor = $livePricePostProcessor; |
||
38 | } |
||
39 | |||
45 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.