Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

19 lines
434B

  1. <?php
  2. namespace Lc\SovBundle\Factory\Setting;
  3. use Lc\SovBundle\Model\File\FileInterface;
  4. use Lc\SovBundle\Model\Setting\SiteSettingInterface;
  5. use Lc\SovBundle\Model\Site\SiteInterface;
  6. interface SiteSettingFactoryInterface
  7. {
  8. public function create(
  9. SiteInterface $site,
  10. string $name,
  11. string $text = null,
  12. \DateTime $date = null,
  13. FileInterface $file = null
  14. ): SiteSettingInterface;
  15. }