<?php
declare(strict_types=1);
/*
*
* This file is part of the PEC Platform BrandingBundle.
*
* (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\BrandingBundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
class PecBrandingBundle extends Bundle {
/**
* @param string $env
* @param array<string, string> $requiredBundles
* @return array<string, string>
*/
public static function getRequiredBundles(string $env, array &$requiredBundles = []): array {
if(isset($requiredBundles['PecBrandingBundle'])) {
return $requiredBundles;
}
$requiredBundles['PecBrandingBundle'] = __CLASS__;
return $requiredBundles;
}
}