src/Entity/RecordTiktok.php line 9
<?phpnamespace App\Entity;use App\Repository\RecordTiktokRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: RecordTiktokRepository::class)]class RecordTiktok extends RecordSocialMedia{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(nullable: true)]private ?int $tiktokerProfileMediaCount = null;#[ORM\Column(nullable: true)]private ?int $tiktokerProfileLikeCount = null;public function getId(): ?int{return $this->id;}public function getTiktokerProfileMediaCount(): ?int{return $this->tiktokerProfileMediaCount;}public function setTiktokerProfileMediaCount(?int $tiktokerProfileMediaCount): static{$this->tiktokerProfileMediaCount = $tiktokerProfileMediaCount;return $this;}public function getTiktokerProfileLikeCount(): ?int{return $this->tiktokerProfileLikeCount;}public function setTiktokerProfileLikeCount(?int $tiktokerProfileLikeCount): static{$this->tiktokerProfileLikeCount = $tiktokerProfileLikeCount;return $this;}public function isTiktok(): bool{return true;}}