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