1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-19 21:10:49 +01:00
openstamanager/app/LaravelGettext/Adapters/AdapterInterface.php
2022-03-02 12:19:52 +01:00

29 lines
460 B
PHP

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