ツイート ブックマーク Symfony5.3でEntityを make:entity 使って生成したらannotationで生成されてしまいました。 せっかくphp8使っているのに…😇 <?php namespace App\Entity; use App\Repository\HogeRepository; use Doctrine\DBAL\Types\Types; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass=HogeRepository::class) */ class Hoge { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private ?int $id; public function get