您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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