<?php
namespace App\Entity;
use App\Repository\SearchHomeDataRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: SearchHomeDataRepository::class)]
class SearchHomeData
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
public function getId(): ?int
{
return $this->id;
}
/** @var string */
public string $q = '';
}