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.

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