You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 line
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. }