mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-19 21:10:49 +01:00
29 lines
460 B
PHP
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();
|
|
}
|