for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* TranslatorFacade
*/
namespace Hokan22\LaravelTranslator;
use Illuminate\Support\Facades\Facade;
* Class TranslatorFacade
*
* @method static string getConfigValue($key)
* @method static string translate($identifier , $parameters = null, $locale = '')
* @method static void setLocale($key)
* @method static void addMissingIdentifier($identifier, $parameters, $group)
* @method static boolean hasIdentifier($identifier)
* @method static string validateLocale($locale)
* @method static string getAllTranslations($locale, $group)
* @package Hokan22\LaravelTranslator
* @author Alexander Viertel <[email protected]>
* @license http://opensource.org/licenses/MIT MIT
class TranslatorFacade extends Facade
{
* Get the registered name of the component.
* @return string
protected static function getFacadeAccessor() {
return 'Translator';
}