1 | <?php |
||
11 | class CompanyMapper extends AbstractMapper |
||
12 | { |
||
13 | protected $companies = []; |
||
14 | |||
15 | public function __construct(array $companies) |
||
19 | |||
20 | /** |
||
21 | * map companies in the full name |
||
22 | * |
||
23 | * @param array $parts = the fullname |
||
24 | * @return array |
||
25 | */ |
||
26 | public function map(array $parts): array |
||
40 | } |
||
41 |