Skip to content

Commit e1331e2

Browse files
committed
refactor: changed array<string> to list<string>
1 parent a1902e1 commit e1331e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/Config/Encryption.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class Encryption extends BaseConfig
3030
* If you want to enable decryption using previous keys, set them here.
3131
* See the user guide for more info.
3232
*
33-
* @var array<string>|string
33+
* @var list<string>|string
3434
*/
3535
public array|string $previousKeys = '';
3636

system/Encryption/Handlers/OpenSSLHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class OpenSSLHandler extends BaseHandler
5959
/**
6060
* List of previous keys for fallback decryption.
6161
*
62-
* @var array<string>|string
62+
* @var list<string>|string
6363
*/
6464
protected array|string $previousKeys = '';
6565

system/Encryption/Handlers/SodiumHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class SodiumHandler extends BaseHandler
3434
/**
3535
* List of previous keys for fallback decryption.
3636
*
37-
* @var array<string>|string
37+
* @var list<string>|string
3838
*/
3939
protected array|string $previousKeys = '';
4040

0 commit comments

Comments
 (0)