mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
13 lines
280 B
PHP
13 lines
280 B
PHP
<?php
|
|
|
|
use SuiteCRM\Utility\CurrentLanguage;
|
|
|
|
/**
|
|
* @param \Psr\Container\ContainerInterface $container
|
|
* @return CurrentLanguage
|
|
*/
|
|
$container['CurrentLanguage'] = function ($container) {
|
|
$currentLanguage = new CurrentLanguage($container);
|
|
return $currentLanguage;
|
|
};
|