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