【发布时间】:2022-10-26 00:35:04
【问题描述】:
创建实体后,我在主题中遇到了许多与此类似的错误。不知道为什么因为使用标签似乎是正确的。使用 symfony 6.1。
这是我的模型: `
namespace App\Entity;
use App\Repository\MovieRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: MovieRepository::class)]
class Movie
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
} `
【问题讨论】:
-
似乎你解决了但你应该编辑你的问题并添加你得到的相关错误的所有堆栈跟踪。