Advertisement
Guest User

Role

a guest
Dec 6th, 2012
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. class Role
  2. {
  3.  
  4.     /**
  5.      * @ORM\OneToMany(targetEntity="User", mappedBy="Role")
  6.      */
  7.     protected $role;
  8.  
  9.     public function __construct()
  10.     {
  11.         $this->role = new ArrayCollection();
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement