選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
408B

  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\PointSale;
  3. use App\Entity\PointSale\PointSale;
  4. use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
  5. use Lc\SovBundle\Factory\AbstractFactory;
  6. class PointSaleFactory extends AbstractFactory implements PointSaleFactoryInterface
  7. {
  8. public function create(): PointSaleInterface
  9. {
  10. $pointSale = new PointSale();
  11. return $pointSale;
  12. }
  13. }