Skip to content

Commit a37a088

Browse files
committed
chore: fix ci
- add doctrine/annotations to require-dev - cs fixes
1 parent 81ad118 commit a37a088

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"doctrine/orm": "^2.7",
1717
"symfony/framework-bundle": "^5.4 | ^6.0",
1818
"symfony/phpunit-bridge": "^5.4 | ^6.0",
19-
"doctrine/doctrine-bundle": "^2.0.3"
19+
"doctrine/doctrine-bundle": "^2.0.3",
20+
"doctrine/annotations": "^1.0"
2021
},
2122
"conflict": {
2223
"php": ">=8.1 <8.1.10",

tests/Fixtures/Entity/ResetPasswordTestFixtureRequest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ final class ResetPasswordTestFixtureRequest implements ResetPasswordRequestInter
2424
{
2525
/**
2626
* @ORM\Id()
27+
*
2728
* @ORM\GeneratedValue()
29+
*
2830
* @ORM\Column(type="integer")
2931
*/
3032
public $id;

tests/Fixtures/Entity/ResetPasswordTestFixtureUser.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ final class ResetPasswordTestFixtureUser
2323
{
2424
/**
2525
* @ORM\Id()
26+
*
2627
* @ORM\GeneratedValue()
28+
*
2729
* @ORM\Column(type="integer")
2830
*/
2931
private $id;

0 commit comments

Comments
 (0)