Skip to content

Commit 18a5f2a

Browse files
committed
Remove useless doc comments
1 parent ddd75fe commit 18a5f2a

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

src/Model/LazyBSONArray.php

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

87-
/**
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.
93-
*/
87+
/** @param PackedArray<TValue>|list<TValue>|null $input */
9488
public function __construct($input = null, ?CodecLibrary $codecLibrary = null)
9589
{
9690
if ($input === null) {

src/Model/LazyBSONDocument.php

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

84-
/**
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.
90-
*/
84+
/** @param Document<TValue>|array<string, TValue>|object|null $input */
9185
public function __construct($input = null, ?CodecLibrary $codecLibrary = null)
9286
{
9387
if ($input === null) {

0 commit comments

Comments
 (0)