Skip to content

Commit 7d8134c

Browse files
authored
Merge release 2.11.0 into 3.0.x (#9369)
2 parents 4b1a419 + fc287b2 commit 7d8134c

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

.doctrine-project.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,27 @@
1212
"upcoming": true
1313
},
1414
{
15-
"name": "2.11",
16-
"branchName": "2.11.x",
17-
"slug": "2.11",
15+
"name": "2.12",
16+
"branchName": "2.12.x",
17+
"slug": "2.12",
1818
"upcoming": true
1919
},
2020
{
21-
"name": "2.10",
22-
"branchName": "2.10.x",
23-
"slug": "2.10",
21+
"name": "2.11",
22+
"branchName": "2.11.x",
23+
"slug": "2.11",
2424
"current": true,
2525
"aliases": [
2626
"current",
2727
"stable"
2828
]
2929
},
30+
{
31+
"name": "2.10",
32+
"branchName": "2.10.x",
33+
"slug": "2.10",
34+
"maintained": false
35+
},
3036
{
3137
"name": "2.9",
3238
"branchName": "2.9.x",

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
| [3.0.x][3.0] | [2.11.x][2.11] | [2.10.x][2.10] |
1+
| [3.0.x][3.0] | [2.12.x][2.12] | [2.11.x][2.11] |
22
|:----------------:|:----------------:|:----------:|
3-
| [![Build status][3.0 image]][3.0] | [![Build status][2.11 image]][2.11] | [![Build status][2.10 image]][2.10] |
4-
| [![Coverage Status][3.0 coverage image]][3.0 coverage]| [![Coverage Status][2.11 coverage image]][2.11 coverage] | [![Coverage Status][2.10 coverage image]][2.10 coverage] |
3+
| [![Build status][3.0 image]][3.0] | [![Build status][2.12 image]][2.12] | [![Build status][2.11 image]][2.11] |
4+
| [![Coverage Status][3.0 coverage image]][3.0 coverage]| [![Coverage Status][2.12 coverage image]][2.12 coverage] | [![Coverage Status][2.11 coverage image]][2.11 coverage] |
55

66
Doctrine 2 is an object-relational mapper (ORM) for PHP 7.1+ that provides transparent persistence
77
for PHP objects. It sits on top of a powerful database abstraction layer (DBAL). One of its key features
@@ -20,10 +20,10 @@ without requiring unnecessary code duplication.
2020
[3.0]: https://github.com/doctrine/orm/tree/3.0.x
2121
[3.0 coverage image]: https://codecov.io/gh/doctrine/orm/branch/3.0.x/graph/badge.svg
2222
[3.0 coverage]: https://codecov.io/gh/doctrine/orm/branch/3.0.x
23-
[2.10 image]: https://github.com/doctrine/orm/actions/workflows/continuous-integration.yml/badge.svg?branch=2.10.x
24-
[2.10]: https://github.com/doctrine/orm/tree/2.10.x
25-
[2.10 coverage image]: https://codecov.io/gh/doctrine/orm/branch/2.10.x/graph/badge.svg
26-
[2.10 coverage]: https://codecov.io/gh/doctrine/orm/branch/2.10.x
23+
[2.12 image]: https://github.com/doctrine/orm/actions/workflows/continuous-integration.yml/badge.svg?branch=2.12.x
24+
[2.12]: https://github.com/doctrine/orm/tree/2.12.x
25+
[2.12 coverage image]: https://codecov.io/gh/doctrine/orm/branch/2.12.x/graph/badge.svg
26+
[2.12 coverage]: https://codecov.io/gh/doctrine/orm/branch/2.12.x
2727
[2.11 image]: https://github.com/doctrine/orm/actions/workflows/continuous-integration.yml/badge.svg?branch=2.11.x
2828
[2.11]: https://github.com/doctrine/orm/tree/2.11.x
2929
[2.11 coverage image]: https://codecov.io/gh/doctrine/orm/branch/2.11.x/graph/badge.svg

lib/Doctrine/ORM/Id/AbstractIdGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function generateId(EntityManagerInterface $em, $entity)
7878

7979
/**
8080
* Gets whether this generator is a post-insert generator which means that
81-
* {@link generate()} must be called after the entity has been inserted
81+
* {@link generateId()} must be called after the entity has been inserted
8282
* into the database.
8383
*
8484
* By default, this method returns FALSE. Generators that have this requirement

lib/Doctrine/ORM/Id/BigIntegerIdentityGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class BigIntegerIdentityGenerator extends AbstractIdGenerator
1616
/**
1717
* The name of the sequence to pass to lastInsertId(), if any.
1818
*
19-
* @var string
19+
* @var string|null
2020
*/
2121
private $sequenceName;
2222

psalm-baseline.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -475,11 +475,6 @@
475475
<code>$entity</code>
476476
</PossiblyNullArgument>
477477
</file>
478-
<file src="lib/Doctrine/ORM/Id/BigIntegerIdentityGenerator.php">
479-
<PossiblyNullPropertyAssignmentValue occurrences="1">
480-
<code>$sequenceName</code>
481-
</PossiblyNullPropertyAssignmentValue>
482-
</file>
483478
<file src="lib/Doctrine/ORM/Internal/CommitOrderCalculator.php">
484479
<RedundantCondition occurrences="2">
485480
<code>$vertex-&gt;state !== self::VISITED</code>

0 commit comments

Comments
 (0)