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.

26 line
479B

  1. <?php
  2. namespace App\Entity\Setting;
  3. use Lc\SovBundle\Repository\Setting\SiteSettingRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Lc\SovBundle\Model\Setting\SiteSettingModel;
  6. /**
  7. * @ORM\Entity(repositoryClass=SiteSettingRepository::class)
  8. */
  9. class SiteSetting extends SiteSettingModel
  10. {
  11. /**
  12. * @ORM\Id
  13. * @ORM\GeneratedValue
  14. * @ORM\Column(type="integer")
  15. */
  16. private $id;
  17. public function getId(): ?int
  18. {
  19. return $this->id;
  20. }
  21. }