Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

PointSaleFactory.php 542B

před 3 roky
před 3 roky
před 3 roky
před 3 roky
1234567891011121314151617181920212223
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\PointSale;
  3. use App\Entity\PointSale\PointSale;
  4. use Lc\CaracoleBundle\Factory\MerchantFactoryTrait;
  5. use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class PointSaleFactory extends AbstractFactory implements PointSaleFactoryInterface
  8. {
  9. use MerchantFactoryTrait;
  10. public function create(): PointSaleInterface
  11. {
  12. $pointSale = new PointSale();
  13. $pointSale->addMerchant($this->merchant);
  14. return $pointSale;
  15. }
  16. }