Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7e6116c

Browse files
committedSep 13, 2024·
39140: Declare visibility for class constants
1 parent 31aa73c commit 7e6116c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎lib/internal/Magento/Framework/Code/GeneratedFiles.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ class GeneratedFiles
2121
/**
2222
* Regenerate flag file name
2323
*/
24-
const REGENERATE_FLAG = 'var/.regenerate';
24+
public const REGENERATE_FLAG = 'var/.regenerate';
2525

2626
/**
2727
* Regenerate lock file name
2828
*/
29-
const REGENERATE_LOCK = self::REGENERATE_FLAG . '.lock';
29+
public const REGENERATE_LOCK = self::REGENERATE_FLAG . '.lock';
3030

3131
/**
3232
* Acquire regenerate lock timeout
3333
*/
34-
const REGENERATE_LOCK_TIMEOUT = 5;
34+
public const REGENERATE_LOCK_TIMEOUT = 5;
3535

3636
/**
3737
* @var DirectoryList

0 commit comments

Comments
 (0)
Please sign in to comment.