webworld888/app/Facades/XeLang.php
2021-10-26 19:14:12 +09:00

42 lines
1.0 KiB
PHP

<?php
/**
* XeLang.php
*
* PHP version 7
*
* @category Translation
* @package Xpressengine\Translation
* @author XE Developers <developers@xpressengine.com>
* @copyright 2020 Copyright XEHub Corp. <https://www.xehub.io>
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
* @link https://xpressengine.io
*/
namespace App\Facades;
use Illuminate\Support\Facades\Facade;
/**
* Class XeLang
*
* @category Translation
* @package Xpressengine\Translation
* @author XE Developers <developers@xpressengine.com>
* @copyright 2020 Copyright XEHub Corp. <https://www.xehub.io>
* @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL
* @link https://xpressengine.io
* @see Xpressengine\Translation\Translator
*/
class XeLang extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'xe.translator';
}
}