Skip to content

Commit

Permalink
adapt for changes in laminas-stdlib 3.18.0
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Rieschl <thomas@trinet.at>
  • Loading branch information
rieschl committed Oct 10, 2023
1 parent 0db511d commit 9bc1a60
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Options/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

/**
* Configuration options for doctrine mongo
* @extends AbstractOptions<int|string|null|array<string, string>>

Check failure on line 15 in src/Options/Configuration.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.2)

Expected 1 line between description and annotations, found 0.

Check failure on line 15 in src/Options/Configuration.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.2)

Null type hint should be on last position in "int|string|null|array<string, string>".
*/
final class Configuration extends AbstractOptions
{
Expand Down
1 change: 1 addition & 0 deletions src/Options/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/**
* Connection options for doctrine mongo
* @extends AbstractOptions<int|string|null|array>

Check failure on line 11 in src/Options/Connection.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.2)

Expected 1 line between description and annotations, found 0.

Check failure on line 11 in src/Options/Connection.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.2)

Null type hint should be on last position in "int|string|null|array".
*/
final class Connection extends AbstractOptions
{
Expand Down
1 change: 1 addition & 0 deletions src/Options/DocumentManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/**
* Document manager options for doctrine mongo
* @extends AbstractOptions<string>

Check failure on line 11 in src/Options/DocumentManager.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.2)

Expected 1 line between description and annotations, found 0.
*/
final class DocumentManager extends AbstractOptions
{
Expand Down
1 change: 1 addition & 0 deletions src/Options/MongoLoggerCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

/**
* Configuration options for a collector
* @extends AbstractOptions<string>

Check failure on line 11 in src/Options/MongoLoggerCollector.php

View workflow job for this annotation

GitHub Actions / Coding Standards / Coding Standards (8.2)

Expected 1 line between description and annotations, found 0.
*/
final class MongoLoggerCollector extends AbstractOptions
{
Expand Down

0 comments on commit 9bc1a60

Please sign in to comment.