mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-24 08:36:48 +00:00
14 lines
301 B
PHP
14 lines
301 B
PHP
<?php
|
|
|
|
use Api\Core\Loader\CustomLoader;
|
|
|
|
return CustomLoader::mergeCustomArray([
|
|
'suiteConfig' => function () {
|
|
global $sugar_config;
|
|
return $sugar_config;
|
|
},
|
|
DBManager::class => function () {
|
|
return DBManagerFactory::getInstance();
|
|
},
|
|
], basename(__FILE__));
|