Skip to content

Commit ca616ed

Browse files
committed
Fix references in function doc blocks
1 parent f947e61 commit ca616ed

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/functions.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ function generate_index_name($document): string
129129
* autoEncryption driver option (if available).
130130
*
131131
* @internal
132-
* @see https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/client-side-encryption.rst#drop-collection-helper
133-
* @see Collection::drop
134-
* @see Database::createCollection
135-
* @see Database::dropCollection
132+
* @see https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/client-side-encryption.rst#collection-encryptedfields-lookup-getencryptedfields
133+
* @see Collection::drop()
134+
* @see Database::createCollection()
135+
* @see Database::dropCollection()
136136
* @return array|object|null
137137
*/
138138
function get_encrypted_fields_from_driver(string $databaseName, string $collectionName, Manager $manager)
@@ -146,9 +146,9 @@ function get_encrypted_fields_from_driver(string $databaseName, string $collecti
146146
* Return a collection's encryptedFields option from the server (if any).
147147
*
148148
* @internal
149-
* @see https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/client-side-encryption.rst#drop-collection-helper
150-
* @see Collection::drop
151-
* @see Database::dropCollection
149+
* @see https://github.com/mongodb/specifications/blob/master/source/client-side-encryption/client-side-encryption.rst#collection-encryptedfields-lookup-getencryptedfields
150+
* @see Collection::drop()
151+
* @see Database::dropCollection()
152152
* @return array|object|null
153153
*/
154154
function get_encrypted_fields_from_server(string $databaseName, string $collectionName, Manager $manager, Server $server)
@@ -454,8 +454,8 @@ function create_field_path_type_map(array $typeMap, string $fieldPath): array
454454
* from the initial call have elapsed. After that, no retries will happen and
455455
* the helper will throw the last exception received from the driver.
456456
*
457-
* @see Client::startSession
458-
* @see Session::startTransaction for supported transaction options
457+
* @see Client::startSession()
458+
* @see Session::startTransaction() for supported transaction options
459459
*
460460
* @param Session $session A session object as retrieved by Client::startSession
461461
* @param callable $callback A callback that will be invoked within the transaction

0 commit comments

Comments
 (0)