fix: various larastan helper issues

This commit is contained in:
Roardom
2023-08-25 07:21:45 +00:00
parent 6e6f551367
commit 2085656e76
10 changed files with 24 additions and 107 deletions
+4 -4
View File
@@ -20,28 +20,28 @@ class BackupEncryption
/**
* Default encryption contants.
*
* @var string
* @var int
*/
final public const ENCRYPTION_DEFAULT = ZipArchive::EM_AES_128;
/**
* AES-128 encryption contants.
*
* @var string
* @var int
*/
final public const ENCRYPTION_WINZIP_AES_128 = ZipArchive::EM_AES_128;
/**
* AES-192 encryption contants.
*
* @var string
* @var int
*/
final public const ENCRYPTION_WINZIP_AES_192 = ZipArchive::EM_AES_192;
/**
* AES-256 encryption contants.
*
* @var string
* @var int
*/
final public const ENCRYPTION_WINZIP_AES_256 = ZipArchive::EM_AES_256;
}