refactor lock file constant out

This commit is contained in:
DubbleClick
2025-06-19 09:50:38 +07:00
parent 4977286936
commit c2d6b9ad2c
5 changed files with 9 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ use SPC\exception\WrongUsageException;
class LockFile
{
private const string LOCK_FILE = DOWNLOAD_PATH . '/.lock.json';
public const string LOCK_FILE = DOWNLOAD_PATH . '/.lock.json';
private static ?array $lock_file_content = null;