Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

26 Zeilen
767B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\PointSale;
  3. use Lc\CaracoleBundle\Container\PointSale\PointSaleSectionContainer;
  4. use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
  5. use Lc\CaracoleBundle\Model\PointSale\PointSaleSectionInterface;
  6. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  7. use Lc\SovBundle\Factory\AbstractFactory;
  8. class PointSaleSectionFactory extends AbstractFactory
  9. {
  10. public function create(PointSaleInterface $pointSale, SectionInterface $section): PointSaleSectionInterface
  11. {
  12. $class = PointSaleSectionContainer::getEntityFqcn();
  13. $pointSaleSection = new $class;
  14. $pointSaleSection->setPointSale($pointSale);
  15. $pointSaleSection->setSection($section);
  16. return $pointSaleSection;
  17. }
  18. }