-
-
Notifications
You must be signed in to change notification settings - Fork 585
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
implement @SkipWhenEmpty for strings #883
base: master
Are you sure you want to change the base?
Conversation
leoric
commented
Mar 7, 2018
Q | A |
---|---|
Bug fix? | no |
New feature? | yes |
Doc updated | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
License | Apache-2.0 |
Hi! Thanks for the contribution. |
return; | ||
} | ||
if ('' === $v) { | ||
return; |
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.
indentation with 4 spaces here
fixed formatting, made documentation more clear. Xml visitor don't need an update - you can't create an empty string node in xml. Yaml visitor doesn't handle this tag at all ATM |
When can this be merged? |