Initialize ChillTicketBundle

This commit is contained in:
Julien Fastré 2024-04-15 13:22:36 +02:00
parent ce655ed435
commit a738b0cac9
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
5 changed files with 29 additions and 0 deletions

View File

@ -118,6 +118,7 @@
"Chill\\PersonBundle\\": "src/Bundle/ChillPersonBundle",
"Chill\\ReportBundle\\": "src/Bundle/ChillReportBundle",
"Chill\\TaskBundle\\": "src/Bundle/ChillTaskBundle",
"Chill\\TicketBundle\\": "src/Bundle/ChillTicketBundle/src",
"Chill\\ThirdPartyBundle\\": "src/Bundle/ChillThirdPartyBundle",
"Chill\\WopiBundle\\": "src/Bundle/ChillWopiBundle/src",
"Chill\\Utils\\Rector\\": "utils/rector/src"

View File

@ -0,0 +1 @@
services:

View File

@ -0,0 +1,10 @@
<?php
namespace Chill\TicketBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ChillTicketBundle extends Bundle
{
}

View File

@ -0,0 +1,17 @@
<?php
namespace Chill\TicketBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader;
use Symfony\Component\DependencyInjection\Extension\Extension;
class ChillTicketExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
{
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../config'));
$loader->load('services.yml');
}
}