Skip to content

Commit

Permalink
Merge pull request #396 from Ocramius/renovate/doctrine-persistence-4.x
Browse files Browse the repository at this point in the history
Update dependency doctrine/persistence to v4
  • Loading branch information
Ocramius authored Feb 5, 2025
2 parents c57af9e + 5d8135f commit 036a6ae
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 17 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"doctrine/orm": "^3.3.1",
"doctrine/persistence": "^3.4.0"
"doctrine/persistence": "^4.0.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
Expand Down
19 changes: 9 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@
</projectFiles>

<issueHandlers>
<PossiblyUnusedParam>
<errorLevel type="suppress">
<directory name="test"/>
</errorLevel>
</PossiblyUnusedParam>
<PossiblyUnusedMethod>
<errorLevel type="suppress">
<directory name="test"/>
Expand Down
4 changes: 3 additions & 1 deletion test/DoctrineBatchUtilsTest/MockEntityManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ public function __construct(EntityManager $realEntityManager)
$this->realEntityManager = $realEntityManager;
}

public function isUninitializedObject(mixed $value): void
public function isUninitializedObject(mixed $value): bool
{
echo __FUNCTION__ . "\n";

return false;
}

public function getProxyFactory(): ProxyFactory
Expand Down

0 comments on commit 036a6ae

Please sign in to comment.