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.
|
- <?php
-
- namespace Lc\CaracoleBundle\Model\Setting;
-
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\SovBundle\Model\File\FileInterface;
- use Lc\SovBundle\Model\Setting\SettingModel;
-
- interface SectionSettingInterface
- {
- public function getSection(): ?SectionInterface;
-
- public function setSection(?SectionInterface $section): SectionSettingInterface;
-
- 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);
- }
|