Skip to content

Commit f334b92

Browse files
authored
Merge pull request #746 from doctrine/6.0.x-merge-up-into-6.1.x_ezaW6wII
Merge release 6.0.1 into 6.1.x
2 parents 7cc1cfc + bb23630 commit f334b92

File tree

6 files changed

+15
-1
lines changed

6 files changed

+15
-1
lines changed

src/Options/DBALConfiguration.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
/**
1010
* Configuration options for a DBAL Connection
11+
*
12+
* @template-extends AbstractOptions<mixed>
1113
*/
1214
class DBALConfiguration extends AbstractOptions
1315
{

src/Options/DBALConnection.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
/**
1414
* DBAL Connection options
15+
*
16+
* @template-extends AbstractOptions<mixed>
1517
*/
1618
final class DBALConnection extends AbstractOptions
1719
{

src/Options/EntityManager.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
use Laminas\Stdlib\AbstractOptions;
88

9+
/**
10+
* @template-extends AbstractOptions<mixed>
11+
*/
912
final class EntityManager extends AbstractOptions
1013
{
1114
/**

src/Options/EntityResolver.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
use function class_exists;
1111
use function sprintf;
1212

13+
/**
14+
* @template-extends AbstractOptions<mixed>
15+
*/
1316
final class EntityResolver extends AbstractOptions
1417
{
1518
/**

src/Options/SQLLoggerCollectorOptions.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
use Laminas\Stdlib\AbstractOptions;
88

99
/**
10-
* Configuration options for an collector
10+
* Configuration options for a collector
11+
*
12+
* @template-extends AbstractOptions<mixed>
1113
*/
1214
final class SQLLoggerCollectorOptions extends AbstractOptions
1315
{

src/Options/SecondLevelCacheConfiguration.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
/**
1010
* Configuration options for Second Level Cache
11+
*
12+
* @template-extends AbstractOptions<mixed>
1113
*/
1214
final class SecondLevelCacheConfiguration extends AbstractOptions
1315
{

0 commit comments

Comments
 (0)