src/Component/Order/Entity/OrderItem.php line 16

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file has been created by developers from BitBag.
  4.  * Feel free to contact us once you face any issues or want to start
  5.  * You can find more information about us on https://bitbag.io and write us
  6.  * an email on hello@bitbag.io.
  7.  */
  8. declare(strict_types=1);
  9. namespace BitBag\OpenMarketplace\Component\Order\Entity;
  10. use Sylius\Component\Core\Model\OrderItem as BaseOrderItem;
  11. class OrderItem extends BaseOrderItem implements OrderItemInterface
  12. {
  13.     use OrderItemTrait;
  14. }