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

MerchantFactory.php 395B

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