sarga/packages/Webkul/Theme/src/Facades/Themes.php

18 lines
292 B
PHP
Raw Normal View History

2018-08-17 05:48:21 +00:00
<?php
namespace Webkul\Theme\Facades;
use Illuminate\Support\Facades\Facade;
class Themes extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'themes';
}
}