This commit is contained in:
Julien Fastré 2024-04-15 15:49:47 +02:00
parent 4d67702a76
commit a2f1e20ddf
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
3 changed files with 28 additions and 4 deletions

View File

@ -1,10 +1,16 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\TicketBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class ChillTicketBundle extends Bundle
{
}
class ChillTicketBundle extends Bundle {}

View File

@ -1,5 +1,14 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\TicketBundle\Controller;
use Symfony\Component\HttpFoundation\Response;

View File

@ -1,5 +1,14 @@
<?php
declare(strict_types=1);
/*
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Chill\TicketBundle\DependencyInjection;
use Symfony\Component\Config\FileLocator;