Uso o VScode porem quando uso o orm:info ele retorna o erro abaixo, podem me ajudar a encontrar o erro?
!
! [CAUTION] You do not have any mapped Doctrine ORM entities according to the current configuration.
!
! If you have entities or mapping files you should check your mapping configuration for errors.
!
Segue a classe aluno:
<?php
namespace Projeto\Doctrim\Entity;
/**
* @Entity
*/
class Aluno
{
/**
* @Id
* @GeneratedValue
* @Column(type="integer")
*/
private $id;
/**
* @Column(type="string")
*/
private $nome;
public function getId(): int
{
return $this->id;
}
public function getNome(): string
{
return $this->nome;
}
public function setNome(string $nome): self
{
$this->nome = $nome;
return $this;
}
}