src/Entity/Customer.php line 18

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\Entity;
  10. use BitBag\OpenMarketplace\Model\ShopCustomer\CustomerTrait;
  11. use Sylius\Component\Core\Model\Customer as BaseShopUser;
  12. class Customer extends BaseShopUser implements CustomerInterface
  13. {
  14.    use CustomerTrait;
  15. }