43 lines
1014 B
PHP
43 lines
1014 B
PHP
<?php
|
|
/**
|
|
* XeDocument.php
|
|
*
|
|
* PHP version 7
|
|
*
|
|
* @category Document
|
|
* @package Xpressengine\Document
|
|
* @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 XeDocument
|
|
*
|
|
* @category Document
|
|
* @package Xpressengine\Document
|
|
* @see Xpressengine\Document\DocumentHandler
|
|
* @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
|
|
*/
|
|
class XeDocument extends Facade
|
|
{
|
|
|
|
/**
|
|
* facade access keyword
|
|
*
|
|
* @return string
|
|
*/
|
|
protected static function getFacadeAccessor()
|
|
{
|
|
return 'xe.document';
|
|
}
|
|
}
|