OAuthClient.php 410 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Base\OAuthBundle\Entity;
  3. use FOS\OAuthServerBundle\Entity\Client as BaseClient;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity
  7. */
  8. class OAuthClient extends BaseClient
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\Column(type="integer")
  13. * @ORM\GeneratedValue(strategy="AUTO")
  14. */
  15. protected $id;
  16. public function __construct()
  17. {
  18. parent::__construct();
  19. }
  20. }