mirror of
https://github.com/wallabag/wallabag.git
synced 2025-10-05 19:31:02 +00:00
26 lines
432 B
PHP
26 lines
432 B
PHP
|
<?php
|
||
|
|
||
|
namespace Wallabag\ApiBundle\Entity;
|
||
|
|
||
|
use FOS\OAuthServerBundle\Entity\Client as BaseClient;
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
|
||
|
/**
|
||
|
* @ORM\Table("oauth2_clients")
|
||
|
* @ORM\Entity
|
||
|
*/
|
||
|
class Client extends BaseClient
|
||
|
{
|
||
|
/**
|
||
|
* @ORM\Id
|
||
|
* @ORM\Column(type="integer")
|
||
|
* @ORM\GeneratedValue(strategy="AUTO")
|
||
|
*/
|
||
|
protected $id;
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
parent::__construct();
|
||
|
}
|
||
|
}
|