]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ApiBundle/Entity/Client.php
Merge pull request #1524 from wallabag/sf2.8
[github/wallabag/wallabag.git] / src / Wallabag / ApiBundle / Entity / Client.php
CommitLineData
fcb1fba5
NL
1<?php
2
3namespace Wallabag\ApiBundle\Entity;
4
fcb1fba5 5use Doctrine\ORM\Mapping as ORM;
619cc453 6use FOS\OAuthServerBundle\Entity\Client as BaseClient;
fcb1fba5
NL
7
8/**
9 * @ORM\Table("oauth2_clients")
10 * @ORM\Entity
11 */
12class Client extends BaseClient
13{
14 /**
15 * @ORM\Id
16 * @ORM\Column(type="integer")
17 * @ORM\GeneratedValue(strategy="AUTO")
18 */
19 protected $id;
20
21 public function __construct()
22 {
23 parent::__construct();
24 }
25}