Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

OrderProductFactory.php 735B

3 лет назад
2 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
3 лет назад
2 лет назад
3 лет назад
3 лет назад
12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Order;
  3. use Lc\CaracoleBundle\Container\Order\OrderProductContainer;
  4. use Lc\CaracoleBundle\Model\Order\OrderProductInterface;
  5. use Lc\CaracoleBundle\Model\Product\ProductInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class OrderProductFactory extends AbstractFactory
  8. {
  9. public function create(ProductInterface $product, int $quantityOrder): OrderProductInterface
  10. {
  11. $orderProduct = $this->createBase();
  12. $orderProduct->setProduct($product);
  13. $orderProduct->setQuantityOrder($quantityOrder);
  14. return $orderProduct;
  15. }
  16. public function createBase(){
  17. $class = OrderProductContainer::getEntityFqcn();
  18. return new $class;
  19. }
  20. }