Browse Source

Fix yii\i18n\GettextMessageSource PHPDoc (#18916)

tags/2.0.44
Anton 3 years ago committed by GitHub
parent
commit
ccf979196c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      framework/i18n/GettextMessageSource.php

8
framework/i18n/GettextMessageSource.php

@ -33,19 +33,19 @@ class GettextMessageSource extends MessageSource
const PO_FILE_EXT = '.po';
/**
* @var string
* @var string base directory of messages files
*/
public $basePath = '@app/messages';
/**
* @var string
* @var string sub-directory of messages files
*/
public $catalog = 'messages';
/**
* @var bool
* @var bool whether to use generated MO files
*/
public $useMoFile = true;
/**
* @var bool
* @var bool whether to use big-endian when reading and writing an integer
*/
public $useBigEndian = false;

Loading…
Cancel
Save