Skip to content

Commit

Permalink
Use attributes on the entity instead of annotations they are fully re…
Browse files Browse the repository at this point in the history
…moved from ORM 3.0
  • Loading branch information
karpilin committed Feb 29, 2024
1 parent 71b233d commit 9f9c925
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@
use Doctrine\ORM\Mapping as ORM;
use Gesdinet\JWTRefreshTokenBundle\Entity\RefreshToken as BaseRefreshToken;

/**
* @ORM\Entity
* @ORM\Table("refresh_tokens")
*/
#[ORM\Entity]
#[ORM\Table(name: 'refresh_tokens')]
class RefreshToken extends BaseRefreshToken
{
}

0 comments on commit 9f9c925

Please sign in to comment.