src/Entity/FriendTriweer.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FriendTriweerRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Gedmo\Blameable\Traits\BlameableEntity;
  6. use Gedmo\Timestampable\Traits\TimestampableEntity;
  7. use Symfony\Component\Validator\Constraints as Assert;
  8. #[ORM\Entity(repositoryClassFriendTriweerRepository::class)]
  9. class FriendTriweer
  10. {
  11.     use BlameableEntity//Hook blameable behavior. Updates createdBy, updatedBy fields
  12.     use TimestampableEntity//Hook timestampable behavior. Updates createdAt, updatedAt fields 
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\ManyToOne(inversedBy'friends')]
  18.     #[ORM\JoinColumn(nullablefalse)]
  19.     #[Assert\NotNull()]
  20.     private ?User $mainUser null;
  21.     #[ORM\ManyToOne]
  22.     #[ORM\JoinColumn(nullablefalse)]
  23.     #[Assert\NotNull()]
  24.     private ?User $friendUser null;
  25.     #[ORM\Column]
  26.     #[Assert\NotNull()]
  27.     private ?bool $shareFavouriteProducts true;
  28.     #[ORM\Column]
  29.     #[Assert\NotNull()]
  30.     private ?bool $shareShopping true;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getMainUser(): ?User
  36.     {
  37.         return $this->mainUser;
  38.     }
  39.     public function setMainUser(?User $mainUser): self
  40.     {
  41.         $this->mainUser $mainUser;
  42.         return $this;
  43.     }
  44.     public function getFriendUser(): ?User
  45.     {
  46.         return $this->friendUser;
  47.     }
  48.     public function setFriendUser(?User $friendUser): self
  49.     {
  50.         $this->friendUser $friendUser;
  51.         return $this;
  52.     }
  53.     public function isShareFavouriteProducts(): ?bool
  54.     {
  55.         return $this->shareFavouriteProducts;
  56.     }
  57.     public function setShareFavouriteProducts(bool $shareFavouriteProducts): self
  58.     {
  59.         $this->shareFavouriteProducts $shareFavouriteProducts;
  60.         return $this;
  61.     }
  62.     public function isShareShopping(): ?bool
  63.     {
  64.         return $this->shareShopping;
  65.     }
  66.     public function setShareShopping(bool $shareShopping): self
  67.     {
  68.         $this->shareShopping $shareShopping;
  69.         return $this;
  70.     }
  71. }