@Id
* @Column(type="integer")
*/
private $id;
/**
* @Column(type="string", length=255, unique=true, nullable=false)
*/
private $firstname;
/**
* @Column(type="string", length=255, unique=true, nullable=false)
*/
private $lastname;
/**
* @Column(type="string", length=255, unique=true, nullable=false)
*/
private $email;
/**
* @Column(type="string", length=255, unique=true, nullable=false)
*/
private $vehicleName;
/**
* @Column(type="string", length=255, unique=true, nullable=false)
*/
private $regNumber;
public function getId(): ?int
{
return $this->id;
}
public function getFirstname(): ?string
{
return $this->firstname;
}
public function setFirstname(string $firstname): self
{
$this->firstname = $firstname;
return $this;
}
public function getLastname(): ?string
{
return $this->lastname;
}
public function setLastname(string $lastname): self
{
$this->lastname = $lastname;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
public function getVehicleName(): ?string
{
return $this->vehicleName;
}
public function setVehicleName(string $vehicleName): self
{
$this->vehicleName = $vehicleName;
return $this;
}
public function getRegNumber(): ?string
{
return $this->regNumber;
}
public function setRegNumber(string $regNumber): self
{
$this->regNumber = $regNumber;
return $this;
}
}
Может у вас тут проблема в синтаксисе аннотаций?
Ты наугад пишешь?))
Почему сразу наугад ?
mapping:info что скажет?
Потому что была бы проблема с синтаксисом - было бы другое сообщение
на скрине видно
Ну вот, оно не видит сущности и её маппинга
Откуда я знаю, я анотации не юзаю, а атрибуты использую, поэтому и говорю, может ошибка в синтаксисе и из-за синтаксиса оно считает мапинг по-другому
Обсуждают сегодня