src/Entity/SocialLink.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SocialLinkRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassSocialLinkRepository::class)]
  8. class SocialLink
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $name null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $url null;
  18.     #[ORM\ManyToOne(inversedBy'socialLinks')]
  19.     private ?Rapper $rapper null;
  20.     public function __toString()
  21.     {
  22.         return (string)$this->getName();
  23.     }
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getName(): ?string
  29.     {
  30.         return $this->name;
  31.     }
  32.     public function setName(string $name): static
  33.     {
  34.         $this->name $name;
  35.         return $this;
  36.     }
  37.     public function getUrl(): ?string
  38.     {
  39.         return $this->url;
  40.     }
  41.     public function setUrl(string $url): static
  42.     {
  43.         $this->url $url;
  44.         return $this;
  45.     }
  46.     public function getRapper(): ?Rapper
  47.     {
  48.         return $this->rapper;
  49.     }
  50.     public function setRapper(?Rapper $rapper): static
  51.     {
  52.         $this->rapper $rapper;
  53.         return $this;
  54.     }
  55. }