for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alpixel\Bundle\CMSBundle\Tests\Functional\Fixture\TestBundle\Entity;
use Alpixel\Bundle\UserBundle\Entity\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="account_user")
*/
class User extends BaseUser
{
* @var int
*
* @ORM\Column(name="user_id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
protected $id;
* Gets the value of id.
* @return int
public function getId()
return $this->id;
}
* Sets the value of id.
* @param int $id the id
* @return self
public function setId($id)
$this->id = $id;
return $this;