Skip to content

Commit 6fc69e5

Browse files
committed
Update dependencies
1 parent d4e1746 commit 6fc69e5

File tree

4 files changed

+98
-58
lines changed

4 files changed

+98
-58
lines changed

api/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@
4747
"phpstan/extension-installer": "^1.4.3",
4848
"phpstan/phpstan": "^2.1.32",
4949
"phpstan/phpstan-deprecation-rules": "^2.0.3",
50-
"phpstan/phpstan-doctrine": "^2.0.11",
50+
"phpstan/phpstan-doctrine": "^2.0.12",
5151
"phpstan/phpstan-phpunit": "^2.0.8",
5252
"phpstan/phpstan-symfony": "^2.0.9",
53-
"phpunit/phpunit": "^12.4.4",
53+
"phpunit/phpunit": "^12.4.5",
5454
"pierres/doctrine-migrations-test": "^2.6.0",
5555
"pierres/symfony-database-test": "^2.5.0",
56-
"rector/rector": "^2.2.9",
56+
"rector/rector": "^2.2.10",
5757
"squizlabs/php_codesniffer": "^4.0.1",
5858
"symfony/phpunit-bridge": "^7.4.0"
5959
},

api/composer.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/src/Entity/Feed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Feed
2020
/**
2121
* @var Collection<int, Item>
2222
*/
23-
#[ORM\OneToMany(mappedBy: 'feed', targetEntity: Item::class, cascade: ['all'])]
23+
#[ORM\OneToMany(targetEntity: Item::class, mappedBy: 'feed', cascade: ['all'])]
2424
#[Assert\Valid]
2525
private Collection $items;
2626

0 commit comments

Comments
 (0)