-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Address some Symfony upgrade leftovers #71
Conversation
By using binding, we can set the isDeprovisionApi parameter value with the value configured in parameters.yaml. Previously a compiler pass was used for this. But that construction did not work any longer
abd694c
to
1e989bd
Compare
@@ -13,7 +13,6 @@ | |||
/vendor/ | |||
/web/bundles/ | |||
/.idea | |||
.env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove this? Cant hurt to leave it there and prevent potential credential leaks?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could leave it, but makes little sense if we do not eval/use them.
@@ -8,6 +8,8 @@ imports: | |||
|
|||
services: | |||
_defaults: | |||
bind: | |||
$isDeprovisionApi: '%deprovision_api_settings_enabled%' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is convention or configured. I assume this looks at the feature toggle below :)
@@ -271,16 +271,16 @@ | |||
}, | |||
{ | |||
"name": "doctrine/dbal", | |||
"version": "4.0.2", | |||
"version": "4.1.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not adopt composer bump
to make your reviewer's live easier? ;)
@@ -13,7 +13,6 @@ | |||
/vendor/ | |||
/web/bundles/ | |||
/.idea | |||
.env |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do not use .env
files, but use the more traditional parameters.yaml
way of configuring app parameters.
Each commit describes what changed