You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AddressFactory.php 530B

3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
3 yıl önce
1234567891011121314151617181920212223
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Address;
  3. use App\Entity\Address\Address;
  4. use Lc\CaracoleBundle\Context\MerchantContextTrait;
  5. use Lc\CaracoleBundle\Model\Address\AddressInterface;
  6. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  7. use Lc\SovBundle\Factory\AbstractFactory;
  8. class AddressFactory extends AbstractFactory
  9. {
  10. public function create(MerchantInterface $merchant): AddressInterface
  11. {
  12. $address = new Address();
  13. $address->setMerchant($merchant);
  14. return $address;
  15. }
  16. }