Skip to content

Commit

Permalink
Fix Doctrine Metadata names
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jun 4, 2011
1 parent 2feea62 commit a547d17
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Blog/User.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
/**
* Whitewashing
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to kontakt@beberlei.de so I can send you a copy immediately.
*/

namespace Whitewashing\Blog;

use FOS\UserBundle\Entity\User as BaseUser;

/**
* If using the blog standalone this user can be used with FOS UserBundle
*/
class User extends BaseUser
{
protected $id;
}

0 comments on commit a547d17

Please sign in to comment.