Skip to content

Commit a9805b3

Browse files
committed
Review
1 parent cd2a184 commit a9805b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/encryption.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Encrypted Fields Map
8181

8282
You can configure which fields are encrypted in each collection by specifying the
8383
``autoEncryption.encryptedFieldsMap`` option in the connection configuration.
84-
This setting **recommended** for improved security and performance.
84+
This setting is **recommended** for improved security and performance.
8585

8686
- If the connection ``encryptedFieldsMap`` object contains a key for the specified
8787
collection, the client uses that object to perform automatic Queryable Encryption,

src/Command/ConnectionDiagnosticCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ private function printAndCheckConnectionDiagnostic(string $name, ConnectionDiagn
8585
{
8686
$io->section(sprintf('Connection: %s', $name));
8787

88-
$enabled = $this->printAutoEncryptionConfiguration($io, $diagnostic);
88+
$autoEncryptionEnabled = $this->printAutoEncryptionConfiguration($io, $diagnostic);
8989

90-
if (! $enabled) {
90+
if (! $autoEncryptionEnabled) {
9191
return true;
9292
}
9393

0 commit comments

Comments
 (0)