i18n CLI compat PHP 7.0 (#4184)

Minor syntax change to pass the linting in PHP 7.0
pull/4186/head
Alexandre Alapetite 3 years ago committed by GitHub
parent 47e242aa77
commit 66912420a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      cli/i18n/I18nFile.php
  2. 8
      cli/i18n/I18nValue.php

@ -152,20 +152,20 @@ class I18nFile {
$translation = preg_replace($patterns, $replacements, $translation);
return <<<OUTPUT
<?php
<?php
/******************************************************************************/
/* Each entry of that file can be associated with a comment to indicate its */
/* state. When there is no comment, it means the entry is fully translated. */
/* The recognized comments are (comment matching is case-insensitive): */
/* + TODO: the entry has never been translated. */
/* + DIRTY: the entry has been translated but needs to be updated. */
/* + IGNORE: the entry does not need to be translated. */
/* When a comment is not recognized, it is discarded. */
/******************************************************************************/
/******************************************************************************/
/* Each entry of that file can be associated with a comment to indicate its */
/* state. When there is no comment, it means the entry is fully translated. */
/* The recognized comments are (comment matching is case-insensitive): */
/* + TODO: the entry has never been translated. */
/* + DIRTY: the entry has been translated but needs to be updated. */
/* + IGNORE: the entry does not need to be translated. */
/* When a comment is not recognized, it is discarded. */
/******************************************************************************/
return {$translation};
return {$translation};
OUTPUT;
OUTPUT;
}
}

@ -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,

Loading…
Cancel
Save