1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-17 03:51:06 +01:00

19 lines
343 B
PHP
Raw Permalink Normal View History

<?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;
}
}