Skip to content

Commit 39edc04

Browse files
committed
Updated outdated version number in docblock
1 parent 224e127 commit 39edc04

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Encryption/Encryption.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @example https://www.johnconde.net/blog/php-simple-encryption/ PHP Simple Encryption
1010
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
1111
* @link https://github.com/stymiee/php-simple-encryption
12-
* @version 1.0.4
12+
* @version 1.0.7
1313
*/
1414

1515
declare(strict_types=1);
@@ -39,11 +39,11 @@ class Encryption
3939
* change with each version of this library.
4040
*
4141
* @param string|null $cipher
42-
* @uses \Encryption\Encryption::getCipherMethods()
43-
* @uses \Encryption\Encryption::createEncryptionObject()
4442
* @return ACipher
4543
* @throws CipherNotImplementedException
4644
* @throws InvalidCipherException
45+
* @uses Encryption::createEncryptionObject
46+
* @uses Encryption::getCipherMethods
4747
*/
4848
public static function getEncryptionObject(?string $cipher = null): ACipher
4949
{
@@ -87,9 +87,9 @@ protected static function createClassName(string $cipher): string
8787
* Creates the encryption object using the specified cipher.
8888
*
8989
* @param string $cipher
90-
* @uses \Encryption\Encryption::createClassName()
9190
* @return ACipher
9291
* @throws CipherNotImplementedException
92+
*@uses Encryption::createClassName
9393
*/
9494
protected static function createEncryptionObject(string $cipher): ACipher
9595
{
@@ -104,9 +104,9 @@ protected static function createEncryptionObject(string $cipher): ACipher
104104
/**
105105
* Returns all ciphers that are available on the system AND is supported by this library.
106106
*
107-
* @uses \Encryption\Encryption::getCipherMethods()
108-
* @uses \Encryption\Encryption::createClassName()
109107
* @return array
108+
* @uses Encryption::createClassName
109+
* @uses Encryption::getCipherMethods
110110
*/
111111
public static function listAvailableCiphers(): array
112112
{

0 commit comments

Comments
 (0)