mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-05 09:37:49 +00:00
12 lines
280 B
PHP
12 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;
|
|
};
|