diff options
| author | 2022-01-31 14:22:50 +0100 | |
|---|---|---|
| committer | 2022-01-31 14:22:50 +0100 | |
| commit | 66912420a10f6eb214ad2261a93db6d7c8f1f64a (patch) | |
| tree | d7638a9bb19aaaf5656239d20e43ae5528800ee4 /cli/i18n/I18nValue.php | |
| parent | 47e242aa77bb8583e8716023c4bcef0462891ebd (diff) | |
i18n CLI compat PHP 7.0 (#4184)
Minor syntax change to pass the linting in PHP 7.0
Diffstat (limited to 'cli/i18n/I18nValue.php')
| -rw-r--r-- | cli/i18n/I18nValue.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/i18n/I18nValue.php b/cli/i18n/I18nValue.php index e691b8574..8ca843b26 100644 --- a/cli/i18n/I18nValue.php +++ b/cli/i18n/I18nValue.php @@ -1,10 +1,10 @@ <?php class I18nValue { - private const STATE_DIRTY = 'dirty'; - private const STATE_IGNORE = 'ignore'; - private const STATE_TODO = 'todo'; - private const STATES = [ + const STATE_DIRTY = 'dirty'; + const STATE_IGNORE = 'ignore'; + const STATE_TODO = 'todo'; + const STATES = [ self::STATE_DIRTY, self::STATE_IGNORE, self::STATE_TODO, |
