From f62d710654b76ba39754986fec807e4e527f8435 Mon Sep 17 00:00:00 2001 From: Chris Hernandez Date: Thu, 18 Feb 2021 23:19:50 -0400 Subject: [PATCH] changed require to include and fixed typo changed include to require to avoid errors --- bin/entities_generator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/entities_generator.php b/bin/entities_generator.php index 2dcfb14..33ff731 100755 --- a/bin/entities_generator.php +++ b/bin/entities_generator.php @@ -26,7 +26,7 @@ function rrmdir($src) { require $rootPath . '/vendor/autoload.php'; $containerBuilder = new ContainerBuilder(); -$settings = require _$rootPath . '/conf/settings.php'; +$settings = include $rootPath . '/conf/settings.php'; $settings($containerBuilder); $container = $containerBuilder->build(); $settings = $container->get('settings');