<?phpnamespace Aviatur\RestBundle\Entity;use FOS\OAuthServerBundle\Entity\Client as BaseClient;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity * @ORM\Table(name="oauth_client") */class OauthClient extends BaseClient{ /** * @ORM\Id * @ORM\Column(name="id", type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ protected $id; public function __construct() { parent::__construct(); }}