mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
phpdoc improvements
This commit is contained in:
parent
5f00587d71
commit
e1e0e8399c
@ -81,7 +81,7 @@ class I18n
|
|||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @static
|
* @static
|
||||||
* @param string $messageId
|
* @param string|array $messageId
|
||||||
* @param mixed $args one or multiple parameters injected into placeholders
|
* @param mixed $args one or multiple parameters injected into placeholders
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
@ -95,7 +95,7 @@ class I18n
|
|||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @static
|
* @static
|
||||||
* @param string $messageId
|
* @param string|array $messageId
|
||||||
* @param mixed $args one or multiple parameters injected into placeholders
|
* @param mixed $args one or multiple parameters injected into placeholders
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
@ -104,7 +104,7 @@ class I18n
|
|||||||
if (empty($messageId)) {
|
if (empty($messageId)) {
|
||||||
return $messageId;
|
return $messageId;
|
||||||
}
|
}
|
||||||
if (count(self::$_translations) === 0) {
|
if (empty(self::$_translations)) {
|
||||||
self::loadTranslations();
|
self::loadTranslations();
|
||||||
}
|
}
|
||||||
$messages = $messageId;
|
$messages = $messageId;
|
||||||
|
Loading…
Reference in New Issue
Block a user