mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Correzioni minori e aggiornamento a Laravel 9
This commit is contained in:
28
app/LaravelGettext/Adapters/AdapterInterface.php
Normal file
28
app/LaravelGettext/Adapters/AdapterInterface.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\LaravelGettext\Adapters;
|
||||
|
||||
interface AdapterInterface
|
||||
{
|
||||
/**
|
||||
* Get the current locale
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getLocale();
|
||||
|
||||
/**
|
||||
* Sets the locale on the adapter
|
||||
*
|
||||
* @param string $locale
|
||||
* @return boolean
|
||||
*/
|
||||
public function setLocale($locale);
|
||||
|
||||
/**
|
||||
* Get the application path
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getApplicationPath();
|
||||
}
|
Reference in New Issue
Block a user