123456789101112131415161718192021222324252627 |
- <?php
- namespace Base\OAuthBundle\Entity;
- use FOS\OAuthServerBundle\Entity\Client as BaseClient;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * @ORM\Entity
- */
- class OAuthClient extends BaseClient
- {
- /**
- * @ORM\Id
- * @ORM\Column(type="integer")
- * @ORM\GeneratedValue(strategy="AUTO")
- */
- protected $id;
-
- public function __construct()
- {
- parent::__construct();
- }
- }
|