Skip to content

Commit b12055c

Browse files
committed
Remove useless doc comments
1 parent 45f244e commit b12055c

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/Model/LazyBSONArray.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,7 @@ public function __clone()
8585
}
8686

8787
/**
88-
* Constructs a lazy BSON array.
89-
*
90-
* @param PackedArray<TValue>|list<TValue>|null $input An input for a lazy array.
91-
* When given a BSON array, this is treated as input. For lists
92-
* this constructs a new BSON array using fromPHP.
88+
* @param PackedArray<TValue>|list<TValue>|null $input
9389
*/
9490
public function __construct($input = null, ?CodecLibrary $codecLibrary = null)
9591
{

src/Model/LazyBSONDocument.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,7 @@ public function __clone()
8282
}
8383

8484
/**
85-
* Constructs a lazy BSON document.
86-
*
87-
* @param Document<TValue>|array<string, TValue>|object|null $input An input for a lazy object.
88-
* When given a BSON document, this is treated as input. For arrays
89-
* and objects this constructs a new BSON document using fromPHP.
85+
* @param Document<TValue>|array<string, TValue>|object|null $input
9086
*/
9187
public function __construct($input = null, ?CodecLibrary $codecLibrary = null)
9288
{

0 commit comments

Comments
 (0)