Fix typo. Remove not needed packages. #548

This commit is contained in:
Korina Cordero 2021-06-17 09:04:57 +00:00
parent 532df141ed
commit 2b356194bb
2 changed files with 1 additions and 3 deletions

View file

@ -217,7 +217,7 @@ class CreateCustomerFromWarrantyCommand extends Command
$new_cust->setFirstName($w_first_name)
->setLastName($w_last_name)
->setPhoneMobile($w_mobile_num)
->setCreateSource('CMB_CreateFromCustomerWarranty');
->setCreateSource('CMB_CreateCustomerFromWarranty');
$this->em->persist($new_cust);

View file

@ -15,8 +15,6 @@ use App\Entity\Customer;
use App\Entity\CustomerVehicle;
use App\Entity\Vehicle;
use App\Ramcar\CustomerSource;
use Catalyst\APIBundle\Access\Generator as ACLGenerator;
class CustomerController extends APIController