Skip to content

Instantly share code, notes, and snippets.

View liyo's full-sized avatar
🏠
Working from home

Pablo Wolochwianski liyo

🏠
Working from home
View GitHub Profile
@Ocramius
Ocramius / User.php
Last active July 20, 2024 15:27
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