|
123456789101112131415161718192021222324252627282930 |
- <?php
-
- namespace Lc\CaracoleBundle\Model\Setting;
-
- use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
- use Lc\SovBundle\Model\File\FileInterface;
- use Lc\SovBundle\Model\Setting\SettingModel;
-
- interface MerchantSettingInterface
- {
- public function getMerchant(): MerchantInterface;
-
- public function setMerchant(MerchantInterface $merchant): MerchantSettingInterface;
-
- public function getName(): ?string;
-
- public function setName(?string $name);
-
- public function getText(): ?string;
-
- public function setText($text);
-
- public function getDate(): ?\DateTimeInterface;
-
- public function setDate(?\DateTimeInterface $date);
-
- public function getFile(): ?FileInterface;
-
- public function setFile(?FileInterface $file);
- }
|