您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SectionFactory.php 478B

3 年前
3 年前
3 年前
3 年前
3 年前
12345678910111213141516171819202122
  1. <?php
  2. namespace Lc\CaracoleBundle\Factory\Section;
  3. use App\Entity\Section\Section;
  4. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  5. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  6. use Lc\SovBundle\Factory\AbstractFactory;
  7. class SectionFactory extends AbstractFactory
  8. {
  9. public function create(MerchantInterface $merchant): SectionInterface
  10. {
  11. $section = new Section();
  12. $section->setMerchant($merchant);
  13. return $section;
  14. }
  15. }