vendor/uvdesk/core-framework/Entity/Recaptcha.php line 10

Open in your IDE?
  1. <?php
  2. namespace Webkul\UVDesk\CoreFrameworkBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="Webkul\UVDesk\CoreFrameworkBundle\Repository\RecaptchaRepository")
  6.  */
  7. class Recaptcha
  8. {
  9.     /**
  10.      * @ORM\Id()
  11.      * @ORM\GeneratedValue()
  12.      * @ORM\Column(type="integer")
  13.      */
  14.     private $id;
  15.     /**
  16.      * @ORM\Column(type="string", length=255, nullable=true)
  17.      */
  18.     private $siteKey;
  19.     /**
  20.      * @ORM\Column(type="string", length=255, nullable=true)
  21.      */
  22.     private $secretKey;
  23.     /**
  24.      * @ORM\Column(type="boolean", nullable=true)
  25.      */
  26.     private $isActive;
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getSiteKey(): ?string
  32.     {
  33.         return $this->siteKey;
  34.     }
  35.     public function setSiteKey(?string $siteKey): self
  36.     {
  37.         $this->siteKey $siteKey;
  38.         return $this;
  39.     }
  40.     public function getSecretKey(): ?string
  41.     {
  42.         return $this->secretKey;
  43.     }
  44.     public function setSecretKey(?string $secretKey): self
  45.     {
  46.         $this->secretKey $secretKey;
  47.         return $this;
  48.     }
  49.     public function getIsActive(): ?bool
  50.     {
  51.         return $this->isActive;
  52.     }
  53.     public function setIsActive(?bool $isActive): self
  54.     {
  55.         $this->isActive $isActive;
  56.         return $this;
  57.     }
  58. }