Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

SiteSettingFactoryInterface.php 434B

3 år sedan
3 år sedan
3 år sedan
3 år sedan
3 år sedan
123456789101112131415161718
  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. }