Skip to content

Commit

Permalink
minor #258 chore: fix ci (kbond)
Browse files Browse the repository at this point in the history
This PR was merged into the main branch.

Discussion
----------

chore: fix ci

- add doctrine/annotations to require-dev
- cs fixes

Commits
-------

a37a088 chore: fix ci
  • Loading branch information
weaverryan committed Feb 2, 2023
2 parents 81ad118 + a37a088 commit 5bd4df4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"doctrine/orm": "^2.7",
"symfony/framework-bundle": "^5.4 | ^6.0",
"symfony/phpunit-bridge": "^5.4 | ^6.0",
"doctrine/doctrine-bundle": "^2.0.3"
"doctrine/doctrine-bundle": "^2.0.3",
"doctrine/annotations": "^1.0"
},
"conflict": {
"php": ">=8.1 <8.1.10",
Expand Down
2 changes: 2 additions & 0 deletions tests/Fixtures/Entity/ResetPasswordTestFixtureRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ final class ResetPasswordTestFixtureRequest implements ResetPasswordRequestInter
{
/**
* @ORM\Id()
*
* @ORM\GeneratedValue()
*
* @ORM\Column(type="integer")
*/
public $id;
Expand Down
2 changes: 2 additions & 0 deletions tests/Fixtures/Entity/ResetPasswordTestFixtureUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ final class ResetPasswordTestFixtureUser
{
/**
* @ORM\Id()
*
* @ORM\GeneratedValue()
*
* @ORM\Column(type="integer")
*/
private $id;
Expand Down

0 comments on commit 5bd4df4

Please sign in to comment.