<?php
/*
*
* This file is part of the PEC Platform Select2FormBundle.
*
* (c) PEC project engineers & consultants
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Pec\Bundle\Select2FormBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* Bundle configuration
*/
class PecSelect2FormBundle extends Bundle {
public static function getRequiredBundles(string $env, array &$requiredBundles = []): array {
if(isset($requiredBundles['PecSelect2FormBundle'])) {
return $requiredBundles;
}
$requiredBundles['PecSelect2FormBundle'] = '\Pec\Bundle\Select2FormBundle\PecSelect2FormBundle';
return $requiredBundles;
}
}