1 | <?php |
||
13 | abstract class AbstractDealProcessor |
||
14 | { |
||
15 | /** |
||
16 | * @var SessionParametersFactory |
||
17 | */ |
||
18 | protected $sessionParametersFactory; |
||
|
|||
19 | |||
20 | /** |
||
21 | * @var LivePrice |
||
22 | */ |
||
23 | protected $livePricesApi; |
||
24 | |||
25 | /** |
||
26 | * @var LivePricePostProcessor |
||
27 | */ |
||
28 | protected $livePricePostProcessor; |
||
29 | |||
30 | public function __construct( |
||
39 | |||
40 | /** |
||
41 | * @param InputInterface $input |
||
42 | */ |
||
43 | abstract public function process(InputInterface $input); |
||
44 | } |
||
45 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.