From a8cf329f097f19df03becad9a6fcfef8ae2496da Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Wed, 18 Sep 2019 04:12:17 +0000 Subject: [PATCH] Fix for error when adding a customer with vehicle. #268 --- src/Entity/CustomerVehicle.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Entity/CustomerVehicle.php b/src/Entity/CustomerVehicle.php index d73906fa..841f7b16 100644 --- a/src/Entity/CustomerVehicle.php +++ b/src/Entity/CustomerVehicle.php @@ -3,6 +3,7 @@ namespace App\Entity; use Doctrine\ORM\Mapping as ORM; +use Doctrine\Common\Collections\ArrayCollection; use Symfony\Component\Validator\Constraints as Assert; use DateTime;