for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Bluz Framework Component
*
* @copyright Bluz PHP Team
* @link https://github.com/bluzphp/framework
*/
declare(strict_types=1);
namespace Bluz\Proxy;
use Bluz\Translator\Translator as Instance;
* Proxy to Translator
* Example of usage
* <code>
* use Bluz\Proxy\Translator;
* echo Translator::translate('message id');
* </code>
* @package Bluz\Proxy
* @author Anton Shevchuk
* @method static Instance getInstance()
* @method static string translate($message, ...$text)
* @see Instance::translate()
* @method static string translatePlural($singular, $plural, $number, ...$text)
* @see Instance::translatePlural()
final class Translator
{
use ProxyTrait;
* Init instance
* @return Instance
* @throws \Bluz\Common\Exception\ConfigurationException
private static function initInstance(): Instance
$instance = new Instance();
$instance->setOptions(Config::get('translator'));
$instance->init();
return $instance;
}