openstamanager/app/LaravelGettext/Adapters/AdapterInterface.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();
}