StocksNew/vendor/php-flasher/flasher/Translation/EchoTranslator.php

28 lines
458 B
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?php
/*
* This file is part of the PHPFlasher package.
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
*/
namespace Flasher\Prime\Translation;
final class EchoTranslator implements TranslatorInterface
{
/**
* {@inheritDoc}
*/
public function translate($id, $parameters = array(), $locale = null)
{
return $id;
}
/**
* {@inheritDoc}
*/
public function getLocale()
{
return 'en';
}
}