Skip to content

Instantly share code, notes, and snippets.

@atarokh
atarokh / User.php
Created August 28, 2018 05:40 — forked from Ocramius/User.php
Doctrine 2 ManyToMany - the correct way
<?php
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @ORM\Entity()
* @ORM\Table(name="user")
*/
class User