namespace App\Entity; class Product { /** * @ORM\Id * @ORM\GeneratedValue * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string") */ private $name; /** * @ORM\ManyToOne( targetEntity="App\Entity\Category", * inversedBy="products") */ private $category; }