mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
20 lines
612 B
PHP
20 lines
612 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2026 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
use Combodo\iTop\Application\Dashlet\Service\DashletService;
|
|
use Combodo\iTop\Forms\Block\FormBlockService;
|
|
use Combodo\iTop\PropertyType\PropertyTypeService;
|
|
use Combodo\iTop\Service\Cache\DataModelDependantCache;
|
|
|
|
return [
|
|
'ModelReflection' => ModelReflectionRuntime::class,
|
|
'DashletService' => DashletService::class,
|
|
'PropertyTypeService' => PropertyTypeService::class,
|
|
'DataModelDependantCache' => DataModelDependantCache::class,
|
|
'FormBlockService' => FormBlockService::class,
|
|
];
|