Skip to content

Commit

Permalink
Apply fixes from StyleCI (#362)
Browse files Browse the repository at this point in the history
Co-authored-by: StyleCI Bot <bot@styleci.io>
  • Loading branch information
markitosgv and StyleCIBot authored Jul 1, 2023
1 parent 4952a1d commit 71ec44c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions Doctrine/RefreshTokenRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @template T of RefreshTokenInterface
*
* @extends ObjectRepository<T>
*/
interface RefreshTokenRepositoryInterface extends ObjectRepository
Expand Down
1 change: 1 addition & 0 deletions Document/RefreshTokenRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @extends DocumentRepository<RefreshToken>
*
* @implements RefreshTokenRepositoryInterface<RefreshToken>
*/
class RefreshTokenRepository extends DocumentRepository implements RefreshTokenRepositoryInterface
Expand Down
1 change: 1 addition & 0 deletions Entity/RefreshTokenRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @extends EntityRepository<RefreshToken>
*
* @implements RefreshTokenRepositoryInterface<RefreshToken>
*/
class RefreshTokenRepository extends EntityRepository implements RefreshTokenRepositoryInterface
Expand Down
3 changes: 3 additions & 0 deletions Tests/Functional/Fixtures/Entity/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@

/**
* @ORM\Entity()
*
* @ORM\Table()
*/
class User implements UserInterface
{
/**
* @ORM\Column(type="integer")
*
* @ORM\Id()
*
* @ORM\GeneratedValue(strategy="AUTO")
*/
private ?int $id = null;
Expand Down

0 comments on commit 71ec44c

Please sign in to comment.