Skip to content

Instantly share code, notes, and snippets.

@Osukaru
Created April 13, 2011 10:24
Show Gist options
  • Save Osukaru/917322 to your computer and use it in GitHub Desktop.
Save Osukaru/917322 to your computer and use it in GitHub Desktop.
<?php
namespace Symfomanos\WebsiteBundle\Entity;
use FOS\UserBundle\Entity\User as BaseUser;
/**
* @orm:Entity
*/
class User extends BaseUser
{
/**
* @orm:Id
* @orm:Column(type="integer")
* @orm:generatedValue(strategy="AUTO")
*/
protected $id;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment