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

30 行
751B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Setting;
  3. use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
  4. use Lc\SovBundle\Model\File\FileInterface;
  5. use Lc\SovBundle\Model\Setting\SettingModel;
  6. interface MerchantSettingInterface
  7. {
  8. public function getMerchant(): MerchantInterface;
  9. public function setMerchant(MerchantInterface $merchant): MerchantSettingInterface;
  10. public function getName(): ?string;
  11. public function setName(?string $name);
  12. public function getText(): ?string;
  13. public function setText($text);
  14. public function getDate(): ?\DateTimeInterface;
  15. public function setDate(?\DateTimeInterface $date);
  16. public function getFile(): ?FileInterface;
  17. public function setFile(?FileInterface $file);
  18. }