Total Complexity | 2 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | abstract class AbstractManager implements ManagerInterface |
||
15 | { |
||
16 | use TransactionTrait; |
||
17 | |||
18 | /** |
||
19 | * @var \SprykerEco\Zed\Computop\Persistence\ComputopQueryContainerInterface |
||
20 | */ |
||
21 | protected $queryContainer; |
||
22 | |||
23 | /** |
||
24 | * @var \SprykerEco\Zed\Computop\ComputopConfig |
||
25 | */ |
||
26 | protected $config; |
||
27 | |||
28 | /** |
||
29 | * @param \SprykerEco\Zed\Computop\Persistence\ComputopQueryContainerInterface $queryContainer |
||
30 | * @param \SprykerEco\Zed\Computop\ComputopConfig $config |
||
31 | */ |
||
32 | public function __construct(ComputopQueryContainerInterface $queryContainer, ComputopConfig $config) |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * @param int $idSalesOrder |
||
40 | * |
||
41 | * @return \Propel\Runtime\ActiveRecord\ActiveRecordInterface |
||
42 | */ |
||
43 | public function getSavedComputopEntity($idSalesOrder) |
||
51 |