Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class CustomerBuilder |
||
15 | { |
||
16 | /** |
||
17 | * @var ConfigHelper |
||
18 | */ |
||
19 | private $configHelper; |
||
20 | |||
21 | /** |
||
22 | * @param ConfigHelper $configHelper |
||
23 | */ |
||
24 | public function __construct(ConfigHelper $configHelper) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @param MagentoCustomer $magentoCustomer |
||
31 | * @return array |
||
32 | */ |
||
33 | public function build(MagentoCustomer $magentoCustomer): array |
||
43 |