Skip to content

Instantly share code, notes, and snippets.

@michaelperrin
Created July 25, 2014 16:36
Show Gist options
  • Save michaelperrin/641692fca6364be785de to your computer and use it in GitHub Desktop.
Save michaelperrin/641692fca6364be785de to your computer and use it in GitHub Desktop.
<?php
/** @Entity **/
class User
{
// ...
}
/** @Entity **/
class Order
{
// ...
/**
* @ManyToOne(targetEntity="User")
* @JoinColumn(name="user_id", referencedColumnName="id")
**/
private $user;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment