openstamanager/app/LaravelGettext/Facades/LaravelGettext.php

19 lines
343 B
PHP

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