blue-twilight/app/Facade/Misc.php

18 lines
278 B
PHP

<?php
namespace App\Facade;
use Illuminate\Support\Facades\Facade;
class Misc extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'misc';
}
}