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