Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Commit

Permalink
Fix PHPDoc comments about non-nullable keys
Browse files Browse the repository at this point in the history
  • Loading branch information
picodexter committed Jun 19, 2017
1 parent a3c22c3 commit 1d94ce4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ interface CipherGeneratorInterface
/**
* Generate cipher.
*
* @param string|null $key
* @param int|null $keyLength
* @param string $key
* @param int|null $keyLength
*
* @return BaseCipher
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ private function setUpBaseCipherDecrypt(BaseCipher $cipher, $decodedValue, $decr
/**
* Set up CipherGenerator: generateCipher.
*
* @param string|null $decryptionKey
* @param BaseCipher $cipher
* @param string $decryptionKey
* @param BaseCipher $cipher
*/
private function setUpCipherGeneratorGenerateCipher($decryptionKey, BaseCipher $cipher)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,8 +313,8 @@ private function setUpBaseCipherSetIv(BaseCipher $cipher, $initializationVector)
/**
* Set up CipherGenerator: generateCipher.
*
* @param string|null $decryptionKey
* @param BaseCipher $cipher
* @param string $decryptionKey
* @param BaseCipher $cipher
*/
private function setUpCipherGeneratorGenerateCipher($decryptionKey, BaseCipher $cipher)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ private function setUpBaseCipherEncrypt(BaseCipher $cipher, $plainValue, $prepar
/**
* Set up CipherGenerator: generateCipher.
*
* @param string|null $encryptionKey
* @param BaseCipher $cipher
* @param string $encryptionKey
* @param BaseCipher $cipher
*/
private function setUpCipherGeneratorGenerateCipher($encryptionKey, BaseCipher $cipher)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ private function setUpBaseCipherSetIv(BaseCipher $cipher, $initializationVector)
/**
* Set up CipherGenerator: generateCipher.
*
* @param string|null $encryptionKey
* @param BaseCipher $cipher
* @param string $encryptionKey
* @param BaseCipher $cipher
*/
private function setUpCipherGeneratorGenerateCipher($encryptionKey, BaseCipher $cipher)
{
Expand Down

0 comments on commit 1d94ce4

Please sign in to comment.