1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-22 06:17:45 +01:00
2022-03-02 12:19:52 +01:00

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