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

43 lines
984 B
PHP

<?php
/**
* XeSEO.php
*
* PHP version 7
*
* @category Seo
* @package Xpressengine\Seo
* @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 XeSEO
*
* @category Seo
* @package Xpressengine\Seo
* @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\Seo\SeoHandler
*/
class XeSEO extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'xe.seo';
}
}