mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 12:38:44 +02:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
18 lines
440 B
PHP
18 lines
440 B
PHP
<?php
|
|
|
|
namespace Container14;
|
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
/*
|
|
* This file is included in Tests\Dumper\GraphvizDumperTest::testDumpWithFrozenCustomClassContainer
|
|
* and Tests\Dumper\XmlDumperTest::testCompiledContainerCanBeDumped.
|
|
*/
|
|
if (!class_exists('Container14\ProjectServiceContainer')) {
|
|
class ProjectServiceContainer extends ContainerBuilder
|
|
{
|
|
}
|
|
}
|
|
|
|
return new ProjectServiceContainer();
|