src/Aviatur/RestBundle/Entity/OauthClient.php line 11

Open in your IDE?
  1. <?php
  2. namespace Aviatur\RestBundle\Entity;
  3. use FOS\OAuthServerBundle\Entity\Client as BaseClient;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity
  7.  * @ORM\Table(name="oauth_client")
  8.  */
  9. class OauthClient extends BaseClient
  10. {
  11.     /**
  12.      * @ORM\Id
  13.      * @ORM\Column(name="id", type="integer")
  14.      * @ORM\GeneratedValue(strategy="AUTO")
  15.      */
  16.     protected $id;
  17.     public function __construct()
  18.     {
  19.         parent::__construct();
  20.     }
  21. }