src/Entity/IssueTopic.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\IssueTopicRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassIssueTopicRepository::class)]
  6. class IssueTopic
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private $name;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private $slug;
  16.     #[ORM\Column(type'integer'nullabletrue)]
  17.     private $wordpressId;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getName(): ?string
  23.     {
  24.         return html_entity_decode($this->name);
  25.     }
  26.     public function setName(?string $name): self
  27.     {
  28.         $this->name $name;
  29.         return $this;
  30.     }
  31.     public function getSlug(): ?string
  32.     {
  33.         return $this->slug;
  34.     }
  35.     public function setSlug(?string $slug): self
  36.     {
  37.         $this->slug $slug;
  38.         return $this;
  39.     }
  40.     public function getWordpressId(): ?int
  41.     {
  42.         return $this->wordpressId;
  43.     }
  44.     public function setWordpressId(?int $wordpressId): self
  45.     {
  46.         $this->wordpressId $wordpressId;
  47.         return $this;
  48.     }
  49.     public function toString()
  50.     {
  51.         return html_entity_decode($this->name);
  52.     }
  53.     public function __toString()
  54.     {
  55.         return $this->toString();
  56.     }
  57. }