-
Notifications
You must be signed in to change notification settings - Fork 84
various tweaks and cleanups #116
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
Conversation
@@ -460,10 +460,6 @@ private function addFlashMessageSection(ArrayNodeDefinition $rootNode) | |||
->defaultFalse() | |||
->info('Whether the cookie should only be transmitted over a secure HTTPS connection from the client.') | |||
->end() | |||
->scalarNode('httpOnly') |
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.
reading up on this again it simply makes no sense whatsoever to have a httpOnly cookie that is intended to be used in javascript. removed this option.
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.
👍
@ddeboer can you have a look here and if you agree merge it into your branch? |
@@ -18,7 +18,7 @@ debug information when that header is present: | |||
enabled | |||
------- | |||
|
|||
**type**: ``enum`` **default**: ``auto`` **options**: ``true``, ``false``, ``auto`` | |||
**type**: ``enum``, **default**: ``auto``, **options**: ``true``, ``false``, ``auto`` |
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.
Nitpicking: the Symfony docs have no commas here either.
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.
okay. i just felt it looks bad with the readthedocs theme we have.
removed the commas. imho its good to merge now. |
decided to do a PR against your PR so you can see what i am doing.