src/Core/Entity/Tournament.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Core\Entity;
  3. use App\Core\Repository\TournamentRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=TournamentRepository::class)
  7.  */
  8. class Tournament
  9. {
  10.     /**
  11.      * @ORM\Id()
  12.      * @ORM\GeneratedValue()
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private int $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private string $name;
  20.     /**
  21.      * @ORM\Column(type="string", length=255, nullable=false)
  22.      */
  23.     private string $apiKey '';
  24.     /**
  25.      * @ORM\Column(type="boolean", options={"default"=1})
  26.      */
  27.     private bool $isActive true;
  28.     public function __construct()
  29.     {
  30.         $this->apiKey sha1(time() * 27);
  31.     }
  32.     public function getId(): ?int
  33.     {
  34.         return $this->id;
  35.     }
  36.     public function getName(): ?string
  37.     {
  38.         return $this->name;
  39.     }
  40.     public function setName(string $name): self
  41.     {
  42.         $this->name $name;
  43.         return $this;
  44.     }
  45.     public function getApiKey(): ?string
  46.     {
  47.         return $this->apiKey;
  48.     }
  49.     public function setApiKey(string $apiKey): self
  50.     {
  51.         $this->apiKey $apiKey;
  52.         return $this;
  53.     }
  54.     public function isActive(): bool
  55.     {
  56.         return $this->isActive;
  57.     }
  58.     public function setIsActive(bool $isActive): self
  59.     {
  60.         $this->isActive $isActive;
  61.         return $this;
  62.     }
  63. }