Skip to content

Commit

Permalink
Fix typo and feed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
reynoldsalec committed Dec 9, 2023
1 parent 8544819 commit 71106cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions builders/symfony.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ const toolingDefaults = {
},
};

/*
* Helper to get the phar build command
*/
const getDbTooling = database => {
Expand Down Expand Up @@ -199,7 +200,7 @@ module.exports = {
cmd: `php /app/${options.webroot}/../bin/console`,
};
if (_.has(options, 'cache')) options.services.cache = getCache(options.cache);

// Rebase on top of any default config we might already have
options.defaultFiles = _.merge({}, getConfigDefaults(_.cloneDeep(options)), options.defaultFiles);
options.services = _.merge({}, getServices(options), options.services);
Expand All @@ -211,7 +212,7 @@ module.exports = {
}
options.proxy = _.set(options.proxy, options.proxyService, [`${options.app}.${options._app._config.domain}`]);


// Send downstream
super(id, options);
};
Expand Down

0 comments on commit 71106cb

Please sign in to comment.