23 lines
417 B
PHP
23 lines
417 B
PHP
<?php
|
|
|
|
namespace App\Ramcar;
|
|
|
|
class LegacyVehicleManufacturer
|
|
{
|
|
static public function translate($id)
|
|
{
|
|
switch($id)
|
|
{
|
|
case 'PROTONWIRA':
|
|
case 'PROTON WIRA':
|
|
return 'PROTON';
|
|
case 'CHERRY CARS':
|
|
case 'CHERY CARS':
|
|
return 'CHERY';
|
|
default:
|
|
return null;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|