Code style fixes ('<?php Lang::out(' -> '<?= Lang::get(').

This commit is contained in:
Dmitry Khomutov 2018-03-17 10:58:23 +07:00
commit 8a29f5aefe
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
24 changed files with 123 additions and 125 deletions

View file

@ -54,16 +54,6 @@ class Lang
return $string;
}
/**
* Output a specific string from the language file.
*
* @param array ...$params
*/
public static function out(...$params)
{
print call_user_func_array(['PHPCensor\Helper\Lang', 'get'], $params);
}
/**
* Get the currently active language.
*