Skip to content
Snippets Groups Projects

Add DrupalCI file to config_override.

Files
8
@@ -17,7 +17,7 @@ class ConfigOverrideServiceProvider implements ServiceModifierInterface {
@@ -17,7 +17,7 @@ class ConfigOverrideServiceProvider implements ServiceModifierInterface {
*/
*/
public function alter(ContainerBuilder $container) {
public function alter(ContainerBuilder $container) {
if (class_exists('\Symfony\Component\Dotenv\Dotenv')) {
if (class_exists('\Symfony\Component\Dotenv\Dotenv')) {
$drupal_root = $container->has('app.root') ? $container->getParameter('app.root') : DRUPAL_ROOT;
$drupal_root = $container->hasParameter('app.root') ? $container->getParameter('app.root') : DRUPAL_ROOT;
$dotenv = new Dotenv();
$dotenv = new Dotenv();
$all_config_overrides = [];
$all_config_overrides = [];
$possible_files = [
$possible_files = [
Loading