src/Api/Entity/OAuthServer/RefreshToken.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Api\Entity\OAuthServer;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use FOS\OAuthServerBundle\Entity\RefreshToken as BaseRefreshToken;
  5. /**
  6.  * @ORM\Entity
  7.  */
  8. class RefreshToken extends BaseRefreshToken
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      *
  13.      * @ORM\Column(type="integer")
  14.      *
  15.      * @ORM\GeneratedValue(strategy="AUTO")
  16.      */
  17.     protected $id;
  18.     /**
  19.      * @ORM\ManyToOne(targetEntity="Client")
  20.      *
  21.      * @ORM\JoinColumn(nullable=false)
  22.      */
  23.     protected $client;
  24.     /**
  25.      * @ORM\ManyToOne(targetEntity="App\Entity\User")
  26.      *
  27.      * @ORM\JoinColumn(name="user_id", referencedColumnName="id", onDelete="CASCADE")
  28.      */
  29.     protected $user;
  30. }