Skip to content

Commit 1bb8e02

Browse files
authored
[5.4] Comment tweak
Added missing `and` and tweaked the last line to try and keep the cascading line ending goodness B)
1 parent 2d521f4 commit 1bb8e02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Encrypter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ public function encrypt($value, $serialize = true)
8484
throw new EncryptException('Could not encrypt the data.');
8585
}
8686

87-
// Once we have the encrypted value we will go ahead base64_encode the input
88-
// vector and create the MAC for the encrypted value so we can verify its
89-
// authenticity. Then, we'll JSON encode the data in a "payload" array.
87+
// Once we have the encrypted value we will go ahead and base64_encode the input
88+
// vector and create the MAC for the encrypted value so we can then verify its
89+
// authenticity. Then, we will JSON encode the data into a "payload" array.
9090
$mac = $this->hash($iv = base64_encode($iv), $value);
9191

9292
$json = json_encode(compact('iv', 'value', 'mac'));

0 commit comments

Comments
 (0)