src/Entity/UserParametros.php line 10
<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;use App\Repository\UserParametrosRepository;use Doctrine\DBAL\Types\Types;#[ORM\Entity(repositoryClass: UserParametrosRepository::class)]class UserParametros{#[ORM\Id]#[ORM\GeneratedValue(strategy: "AUTO")]#[ORM\Column(type: "integer")]private $id;#[ORM\ManyToOne(inversedBy: 'UserPalavras')]private ?User $User = null;#[ORM\Column(length: 255)]private $parametro;#[ORM\Column(type: Types::TEXT, nullable: true)]private $valor;public function getId(): ?int{return $this->id;}public function getUser(): ?User{return $this->User;}public function setUser(?User $User): self{$this->User = $User;return $this;}public function getParametro(): ?string{return $this->parametro;}public function setParametro(?string $parametro): self{$this->parametro = $parametro;return $this;}public function getValor(): ?string{return $this->valor;}public function setValor(?string $valor): self{$this->valor = $valor;return $this;}}