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.

25 lines
566B

  1. <?php
  2. namespace Lc\SovBundle\Model\Setting;
  3. use Lc\SovBundle\Model\File\FileInterface;
  4. interface SettingInterface
  5. {
  6. public function getName(): ?string;
  7. public function setName(?string $name): SettingInterface;
  8. public function getText(): ?string;
  9. public function setText($text): SettingInterface;
  10. public function getDate(): ?\DateTimeInterface;
  11. public function setDate(?\DateTimeInterface $date): SettingInterface;
  12. public function getFile(): ?FileInterface;
  13. public function setFile(?FileInterface $file): SettingInterface;
  14. }