Bläddra i källkod

UserPointSaleFactory : correctif

packProduct
Guillaume 2 år sedan
förälder
incheckning
878cf7135d
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. +2
    -1
      Factory/User/UserPointSaleFactory.php

+ 2
- 1
Factory/User/UserPointSaleFactory.php Visa fil

@@ -2,6 +2,7 @@

namespace Lc\CaracoleBundle\Factory\User;

use App\Entity\User\UserPointSale;
use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
use Lc\CaracoleBundle\Model\User\UserPointSaleInterface;
use Lc\SovBundle\Factory\AbstractFactory;
@@ -11,7 +12,7 @@ class UserPointSaleFactory extends AbstractFactory
{
public function create(UserInterface $user, PointSaleInterface $pointSale): UserPointSaleInterface
{
$userPointSale = parent::create();
$userPointSale = new UserPointSale();

$userPointSale->setUser($user);
$userPointSale->setPointSale($pointSale);

Laddar…
Avbryt
Spara