Files
symfony-flex-recipes-contrib/friendsofsymfony/oauth-server-bundle/1.6/src/Entity/Client.php
T

20 lines
290 B
PHP

<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use FOS\OAuthServerBundle\Entity\Client as BaseClient;
/**
* @ORM\Entity
*/
class Client extends BaseClient
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
protected $id;
}