Skip to content

Commit

Permalink
apply coding standards
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 9bc1a60 commit 87f3fc4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Options/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@

/**
* Configuration options for doctrine mongo
* @extends AbstractOptions<int|string|null|array<string, string>>
*
* @extends AbstractOptions<int|string|array<string, string>|null>
*/
final class Configuration extends AbstractOptions
{
Expand Down
3 changes: 2 additions & 1 deletion src/Options/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

/**
* Connection options for doctrine mongo
* @extends AbstractOptions<int|string|null|array>
*
* @extends AbstractOptions<int|string|array|null>
*/
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>
*/
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>
*/
final class MongoLoggerCollector extends AbstractOptions
Expand Down

0 comments on commit 87f3fc4

Please sign in to comment.