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

OrderProductRefundFactory.php 538B

3 лет назад
2 лет назад
3 лет назад
3 лет назад
3 лет назад
2 лет назад
3 лет назад
1234567891011121314151617181920
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Order;
  3. use App\Entity\Order\OrderProductRefund;
  4. use Lc\CaracoleBundle\Container\Order\OrderProductRefundContainer;
  5. use Lc\CaracoleBundle\Model\Order\OrderProductRefundInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class OrderProductRefundFactory extends AbstractFactory
  8. {
  9. public function create(): OrderProductRefundInterface
  10. {
  11. $class = OrderProductRefundContainer::getEntityFqcn();
  12. $orderProductRefund = new $class;
  13. return $orderProductRefund;
  14. }
  15. }