Skip to content

Commit

Permalink
changed require to include and fixed typo
Browse files Browse the repository at this point in the history
changed include to require to avoid errors
  • Loading branch information
cshernandez1 authored Feb 19, 2021
1 parent cdf8257 commit f62d710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/entities_generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit f62d710

Please # to comment.