src/Entity/RecordFacebook.php line 9
<?phpnamespace App\Entity;use App\Repository\RecordFacebookRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: RecordFacebookRepository::class)]class RecordFacebook extends RecordSocialMedia{//"Video-posts" , "Picture Posts" ,"Link-posts"#[ORM\Column(nullable: true)]private ?int $fbLinksPostCount = null;#[ORM\Column(length: 255, nullable: true)]private ?string $fbPageLinkVideoClicksCount = null;#[ORM\Column(length: 255, nullable: true)]private ?string $fbPagePostsReactions = null;#[ORM\Column(length: 255, nullable: true)]private ?string $fbPagePostsCommentsCount = null;#[ORM\Column(length: 255, nullable: true)]private ?string $fbPagePostsSharesCount = null;public function getFbLinksPostCount(): ?int{return $this->fbLinksPostCount;}public function setFbLinksPostCount(?int $fbLinksPostCount): static{$this->fbLinksPostCount = $fbLinksPostCount;return $this;}public function getFbPageLinkVideoClicksCount(): ?string{return $this->fbPageLinkVideoClicksCount;}public function setFbPageLinkVideoClicksCount(?string $fbPageLinkVideoClicksCount): static{$this->fbPageLinkVideoClicksCount = $fbPageLinkVideoClicksCount;return $this;}public function getFbPagePostsReactions(): ?string{return $this->fbPagePostsReactions;}public function setFbPagePostsReactions(?string $fbPagePostsReactions): static{$this->fbPagePostsReactions = $fbPagePostsReactions;return $this;}public function getFbPagePostsCommentsCount(): ?string{return $this->fbPagePostsCommentsCount;}public function setFbPagePostsCommentsCount(?string $fbPagePostsCommentsCount): static{$this->fbPagePostsCommentsCount = $fbPagePostsCommentsCount;return $this;}public function getFbPagePostsSharesCount(): ?string{return $this->fbPagePostsSharesCount;}public function setFbPagePostsSharesCount(?string $fbPagePostsSharesCount): static{$this->fbPagePostsSharesCount = $fbPagePostsSharesCount;return $this;}public function isFacebook(): bool{return true;}}