| 1 | <?php |
||
| 14 | class CompanyMapper extends AbstractMapper |
||
| 15 | { |
||
| 16 | protected $companies = []; |
||
| 17 | |||
| 18 | public function __construct(array $companies) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * map companies in the full name |
||
| 25 | * |
||
| 26 | * @param array $parts = the fullname |
||
| 27 | * @return array |
||
| 28 | */ |
||
| 29 | public function map(array $parts): array |
||
| 43 | } |
||
| 44 |